2
1
mirror of https://github.com/Thream/api.git synced 2024-07-21 03:38:31 +02:00
api/.eslintrc.json

19 lines
447 B
JSON
Raw 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,
"jest": true
},
"rules": {
"prettier/prettier": "error",
"import/extensions": ["error", "always"],
2022-02-19 20:08:25 +01:00
"unicorn/prevent-abbreviations": "error",
2022-03-01 23:00:49 +01:00
"@typescript-eslint/await-thenable": "off",
"@typescript-eslint/no-misused-promises": "off"
2021-10-24 04:18:18 +02:00
}
}