1 |
rakin |
145 |
{ |
2 |
|
|
"root": true, |
3 |
|
|
"parser": "@typescript-eslint/parser", |
4 |
|
|
"plugins": [ |
5 |
|
|
"@typescript-eslint" |
6 |
|
|
], |
7 |
|
|
"extends": [ |
8 |
|
|
"eslint:recommended", |
9 |
|
|
"plugin:@typescript-eslint/eslint-recommended", |
10 |
|
|
"plugin:@typescript-eslint/recommended" |
11 |
|
|
], |
12 |
|
|
"rules": { |
13 |
|
|
"prefer-const": "warn", |
14 |
rakin |
164 |
"no-mixed-spaces-and-tabs": "warn", |
15 |
rakin |
145 |
"@typescript-eslint/no-inferrable-types": "warn", |
16 |
|
|
"no-useless-escape": "warn", |
17 |
|
|
"@typescript-eslint/no-empty-function": "warn", |
18 |
|
|
"@typescript-eslint/no-extra-semi": "warn", |
19 |
|
|
"no-prototype-builtins": "warn", |
20 |
|
|
"@typescript-eslint/no-var-requires": "warn", |
21 |
|
|
"no-empty": "warn", |
22 |
|
|
"@typescript-eslint/no-non-null-asserted-optional-chain": "warn", |
23 |
|
|
"use-isnan": "warn", |
24 |
|
|
"@typescript-eslint/ban-types": "warn" |
25 |
|
|
} |
26 |
rakin |
164 |
} |