2
1
mirror of https://github.com/Thream/api.git synced 2024-07-12 15:50:11 +02:00
api/.eslintrc.json
2022-03-20 11:49:27 +01:00

17 lines
373 B
JSON

{
"extends": ["conventions", "prettier"],
"plugins": ["prettier", "import", "unicorn"],
"parserOptions": {
"project": "./tsconfig.json"
},
"env": {
"node": true
},
"rules": {
"prettier/prettier": "error",
"import/extensions": ["error", "always"],
"unicorn/prevent-abbreviations": "error",
"unicorn/prefer-node-protocol": "error"
}
}