2023-03-14 21:16:54 +01:00
|
|
|
{
|
2023-07-30 22:28:13 +02:00
|
|
|
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended-type-checked"],
|
2023-03-14 21:16:54 +01:00
|
|
|
"parser": "@typescript-eslint/parser",
|
2023-07-30 22:28:13 +02:00
|
|
|
"parserOptions": {
|
2023-09-18 10:41:54 +02:00
|
|
|
"project": "./tsconfig.eslint.json"
|
2023-07-30 22:28:13 +02:00
|
|
|
},
|
2023-03-14 21:16:54 +01:00
|
|
|
"rules": {
|
2023-07-30 22:28:13 +02:00
|
|
|
"@typescript-eslint/no-floating-promises": "warn",
|
|
|
|
"@typescript-eslint/no-unsafe-declaration-merging": "warn",
|
2023-09-18 10:41:54 +02:00
|
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
2023-03-25 11:41:37 +01:00
|
|
|
"@typescript-eslint/semi": ["error", "always"],
|
2023-07-30 22:28:13 +02:00
|
|
|
"semi": "off",
|
|
|
|
"eol-last": ["error", "always"],
|
|
|
|
"eqeqeq": ["error", "always"]
|
2023-03-14 21:16:54 +01:00
|
|
|
}
|
|
|
|
}
|