-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
.eslintrc
38 lines (38 loc) · 1.12 KB
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"root": true,
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"@casperiv/eslint-config",
"@casperiv/eslint-config-react",
"@casperiv/eslint-config-next",
"plugin:deprecation/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module",
"project": "./tsconfig.base.json",
"emitDecoratorMetadata": true,
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"capitalized-comments": "off",
"@typescript-eslint/no-non-null-asserted-optional-chain": "error",
"@typescript-eslint/no-unnecessary-type-constraint": "error",
"@typescript-eslint/no-non-null-asserted-nullish-coalescing": "error",
"@typescript-eslint/no-unnecessary-condition": "error",
"@typescript-eslint/no-unnecessary-boolean-literal-compare": "error",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/consistent-type-imports": [
"error",
{ "prefer": "type-imports", "fixStyle": "inline-type-imports" }
]
}
}