-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
45 lines (45 loc) · 1.58 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
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "import"],
"rules": {
"indent": ["error", 4, { "ignoredNodes": ["TemplateLiteral > *"] }],
"linebreak-style": ["error", "windows"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-sparse-arrays": "off",
"no-case-declarations": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-non-null-asserted-optional-chain": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/member-delimiter-style": ["error", { "singleline": { "requireLast": true } }],
"import/order": [
"error",
{ "groups": ["builtin", "external", "internal", "parent", "sibling", "index", "object", "type"] }
],
"import/no-unresolved": "off",
"comma-dangle": ["error", "always-multiline"]
},
"settings": {
"import/resolver": {
"node": { "extensions": [".ts"] }
}
}
}