-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
63 lines (63 loc) · 1.95 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/strict-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:markdown/recommended-legacy",
"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",
{ "allow": ["*/lib/*", "vitest/config", "world_countries_lists/data/**/*.json"] }
],
"import/no-named-as-default": "off",
"import/no-named-as-default-member": "off",
"quotes": ["error", "single", { "avoidEscape": true }]
},
"overrides": [
{
"extends": ["plugin:@typescript-eslint/disable-type-checked"],
"files": ["**/*.js"]
},
{
"files": ["**/*.md"],
"processor": "markdown/markdown"
},
{
"files": ["./**/*.md/*.js"],
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"import/no-unresolved": "off"
}
},
{
"files": ["integration/**/*.ts"],
"rules": {
"no-empty-pattern": "off"
}
}
],
"settings": {
"import/resolver": {
"typescript": true
}
}
}