2
1
mirror of https://github.com/Thream/file-uploads-api.git synced 2024-07-06 21:00:10 +02:00
file-uploads-api/.eslintrc.json

14 lines
336 B
JSON
Raw Permalink Normal View History

2022-04-08 17:54:56 +02:00
{
"extends": ["conventions", "prettier"],
"plugins": ["prettier", "import", "unicorn"],
2023-07-22 16:24:52 +02:00
"parser": "@typescript-eslint/parser",
2022-04-08 17:54:56 +02:00
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"prettier/prettier": "error",
"import/extensions": ["error", "always"],
2023-01-11 00:24:19 +01:00
"unicorn/prevent-abbreviations": "error"
2022-04-08 17:54:56 +02:00
}
}