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

14 lines
336 B
JSON
Raw Permalink 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"],
2023-07-22 16:26:27 +02:00
"parser": "@typescript-eslint/parser",
2021-10-24 04:18:18 +02:00
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"prettier/prettier": "error",
"import/extensions": ["error", "always"],
2023-01-11 18:02:38 +01:00
"unicorn/prevent-abbreviations": "error"
2021-10-24 04:18:18 +02:00
}
}