This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
api/.eslintrc.json

17 lines
373 B
JSON
Raw Permalink Normal View History

2021-10-24 04:18:18 +02:00
{
2022-02-19 20:08:25 +01:00
"extends": ["conventions", "prettier"],
"plugins": ["prettier", "import", "unicorn"],
2021-10-24 04:18:18 +02:00
"parserOptions": {
"project": "./tsconfig.json"
},
"env": {
"node": true
2021-10-24 04:18:18 +02:00
},
"rules": {
"prettier/prettier": "error",
"import/extensions": ["error", "always"],
2022-02-19 20:08:25 +01:00
"unicorn/prevent-abbreviations": "error",
"unicorn/prefer-node-protocol": "error"
2021-10-24 04:18:18 +02:00
}
}