-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
114 lines (114 loc) · 3.74 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "no-comments", "require-extensions"],
"extends": [
"eslint:recommended",
"plugin:require-extensions/recommended",
"plugin:@typescript-eslint/strict-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:fp-ts/all",
"plugin:wc/best-practice",
"prettier"
],
"overrides": [
{
"files": ["**/*.test.ts"],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
"@typescript-eslint/prefer-promise-reject-errors": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"no-comments/disallowComments": "off"
}
},
{
"files": ["test/assets/**/*.test.ts"],
"rules": {
"@typescript-eslint/no-unused-expressions": "off"
}
},
{
"files": ["integration/**/*.ts", "visual-regression/**/*.ts"],
"rules": {
"@typescript-eslint/unbound-method": "off",
"no-empty-pattern": "off"
}
},
{
"files": ["integration/**/*.ts", "test/**/*.ts", "visual-regression/**/*.ts"],
"rules": {
"import/no-internal-modules": ["error", { "forbid": ["**/assets/**/*"] }]
}
},
{
"files": ["test/assets/**/*.ts"],
"rules": {
"import/no-internal-modules": "off"
}
}
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/array-type": ["error", { "default": "generic" }],
"@typescript-eslint/consistent-type-exports": ["error", { "fixMixedExportsWithInlineTypeSpecifier": true }],
"@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",
"fp-ts/no-lib-imports": "off",
"fp-ts/no-module-imports": "off",
"import/no-cycle": "error",
"import/no-duplicates": ["error", { "prefer-inline": true }],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"assets/**/*.ts",
"integration/**/*.ts",
"test/**/*.ts",
"visual-regression/**/*.ts",
"*.ts"
]
}
],
"import/no-internal-modules": [
"error",
{
"allow": [
"fp-ts/lib/*",
"fp-ts-contrib/lib/*",
"io-ts/lib/*",
"iso-639-3/to-*.json",
"http-proxy-middleware/dist/types",
"hyper-ts/lib/*",
"logging-ts/lib/*",
"nanohtml/*",
"remixicon/**/*.svg",
"tinyld/heavy",
"integration/base",
"types/*",
"*/index.js"
]
}
],
"import/no-named-as-default": "off",
"import/no-named-as-default-member": "off",
"no-comments/disallowComments": ["error", { "allow": ["eslint", "https://", "Do", "Unfortunately", "Refs"] }],
"object-shorthand": "error",
"quotes": ["error", "single", { "avoidEscape": true }],
"wc/no-child-traversal-in-connectedcallback": "off"
},
"settings": {
"import/core-modules": ["@jest/globals"],
"import/resolver": { "typescript": true }
}
}