forked from snabbdom/snabbdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
94 lines (94 loc) · 2.45 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
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:markdown/recommended",
"plugin:import/recommended",
"plugin:import/typescript",
"prettier"
],
"env": {
"browser": true,
"node": false
},
"ignorePatterns": [
"browserstack-browsers.js",
"web-test-runner.config.js",
"build",
"coverage"
],
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"excludedFiles": ["README*/**"],
"parserOptions": {
"project": ["./tsconfig.json", "test/tsconfig.json"]
},
"extends": [
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-redundant-type-constituents": "off"
}
},
{
"files": ["test/unit/**/*.ts", "test/unit/*.tsx"],
"env": {
"browser": true,
"node": true
}
},
{
"files": ["examples/**/*.js"],
"rules": {
"import/no-unresolved": "off",
"@typescript-eslint/explicit-module-boundary-types": "off"
}
},
{
"files": ["*.js"],
"excludedFiles": ["examples/**"],
"extends": ["plugin:node/recommended"],
"env": {
"node": true,
"browser": false
},
"rules": {
"@typescript-eslint/no-var-requires": "off"
}
},
{
"files": ["README*md/*.tsx"],
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"import/no-unresolved": "off"
}
},
{
"files": ["CHANGELOG.md/*"],
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"import/no-unresolved": "off",
"node/no-missing-import": "off"
}
}
],
"rules": {
"max-statements-per-line": "error",
"no-var": "error",
"import/newline-after-import": "error",
"import/no-default-export": "error"
}
}