-
Notifications
You must be signed in to change notification settings - Fork 671
/
.eslintrc
89 lines (89 loc) · 2.66 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
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
{
"env": {
"browser": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2015
},
"rules": {
"array-bracket-spacing": [0],
"comma-dangle": [2, "never"],
"eol-last": 2,
"no-multiple-empty-lines": 2,
"object-curly-spacing": [2, "always"],
"quotes": [
2,
"single",
{ "avoidEscape": true, "allowTemplateLiterals": true }
],
"semi": [2, "never"],
"strict": 0,
"space-before-blocks": [2, "always"],
"space-before-function-paren": [0]
},
"overrides": [
{
"parser": "@typescript-eslint/parser",
"files": ["*.{c,m,}{t,j}s", "*.{t,j}sx"],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"project": true
},
"env": { "jest": true },
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-shadow": ["off"],
"@typescript-eslint/no-use-before-define": ["off"],
"@typescript-eslint/ban-types": "off",
"prefer-rest-params": "off",
"prefer-spread": "off",
"@typescript-eslint/consistent-type-imports": [
2,
{ "fixStyle": "separate-type-imports" }
],
"@typescript-eslint/consistent-type-exports": [2]
}
},
{
"files": ["**/test/**/*.ts", "**/typescript_test/**/*.ts"],
"rules": {
"consistent-return": "off",
"max-lines": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-shadow": "off"
}
},
{
"parser": "@typescript-eslint/parser",
"files": ["./docs/examples/**/*.{js,ts,jsx,tsx}"],
"parserOptions": {
"ecmaVersion": 2023,
"sourceType": "module",
"ecmaFeatures": { "jsx": true }
},
"rules": {
"no-unused-vars": [0]
}
}
]
}