-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
45 lines (45 loc) · 1.53 KB
/
.eslintrc.json
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
39
40
41
42
43
44
45
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "no-comments"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/strict-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked",
"plugin:import/recommended",
"plugin:import/typescript",
"prettier"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/array-type": ["error", { "default": "generic" }],
"@typescript-eslint/consistent-type-imports": ["error", { "fixStyle": "inline-type-imports" }],
"@typescript-eslint/no-confusing-void-expression": "off",
"@typescript-eslint/no-import-type-side-effects": "error",
"@typescript-eslint/prefer-nullish-coalescing": ["error", { "ignoreConditionalTests": true }],
"@typescript-eslint/restrict-template-expressions": ["error", { "allowNumber": true }],
"@typescript-eslint/strict-boolean-expressions": "error",
"import/no-cycle": "error",
"import/no-duplicates": ["error", { "prefer-inline": true }],
"import/no-extraneous-dependencies": ["error"],
"import/no-internal-modules": ["error"],
"import/no-named-as-default": "off",
"import/no-named-as-default-member": "off",
"no-comments/disallowComments": ["error"],
"quotes": ["error", "single", { "avoidEscape": true }]
},
"overrides": [
{
"files": ["test/**/*.ts"],
"rules": {
"import/no-internal-modules": "off"
}
}
],
"settings": {
"import/resolver": {
"typescript": true
}
}
}