2
1
mirror of https://github.com/Thream/file-uploads-api.git synced 2024-07-12 23:50:11 +02:00
file-uploads-api/.eslintrc.json
2023-01-11 00:24:19 +01:00

16 lines
328 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"
}
}