-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
46 lines (46 loc) · 1.4 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
{
"env": {
"es2024": true,
"browser": true,
"worker": true,
"serviceworker": true,
"node": true
},
"plugins": [
"compat",
"jsx-a11y",
"solid"
],
"extends": [
"plugin:compat/recommended",
"plugin:jsx-a11y/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:solid/typescript"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"ecmaVersion": "latest",
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"@typescript-eslint/indent": ["warn", 2, { "flatTernaryExpressions": true }],
"@typescript-eslint/quotes": ["warn", "single"],
"@typescript-eslint/semi": ["warn", "never"],
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }],
"@typescript-eslint/member-delimiter-style": ["warn", {
"multiline": { "delimiter": "none", "requireLast": false },
"singleline": { "delimiter": "comma", "requireLast": false }
}],
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/prefer-as-const": "off"
}
}