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

22 lines
504 B
JSON
Raw Normal View History

2021-10-24 04:18:18 +02:00
{
"extends": ["standard-with-typescript", "prettier"],
"plugins": ["unicorn", "import", "prettier"],
2021-10-24 04:18:18 +02:00
"parserOptions": {
"project": "./tsconfig.json"
},
"env": {
"node": true,
"jest": true
},
"rules": {
"prettier/prettier": "error",
"import/order": [
"error",
{ "groups": ["builtin", "external", "internal"] }
],
"import/extensions": ["error", "always"],
2021-10-24 04:18:18 +02:00
"unicorn/prefer-node-protocol": "error",
"unicorn/prevent-abbreviations": "error"
}
}