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
2022-03-01 23:00:49 +01:00

19 lines
447 B
JSON

{
"extends": ["conventions", "prettier"],
"plugins": ["prettier", "import", "unicorn"],
"parserOptions": {
"project": "./tsconfig.json"
},
"env": {
"node": true,
"jest": true
},
"rules": {
"prettier/prettier": "error",
"import/extensions": ["error", "always"],
"unicorn/prevent-abbreviations": "error",
"@typescript-eslint/await-thenable": "off",
"@typescript-eslint/no-misused-promises": "off"
}
}