-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
71 lines (71 loc) · 2.12 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
{
"root": true,
"env": {
"es6": true,
"node": true,
"browser": true
},
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["tsconfig.json", "tsconfig.dev.json"],
"sourceType": "module"
},
"ignorePatterns": ["*.js", "*.d.ts"],
"plugins": ["@typescript-eslint", "import"],
"rules": {
"constructor-super": "error",
"for-direction": "off",
"quotes": [
"error",
"double",
{ "avoidEscape": true, "allowTemplateLiterals": false }
],
"no-undef": "error",
"no-restricted-syntax": [
"error",
{
"selector": "SequenceExpression",
"message": "The comma operator is confusing and a common mistake. Don’t use it!"
}
],
"import/no-unresolved": 0,
"object-curly-spacing": ["error", "always"],
"no-unused-vars": ["error", { "args": "none" }],
"no-unused-expressions": "error",
"no-useless-escape": "error",
"no-param-reassign": "error",
"no-shadow": "error",
"no-unreachable-loop": "error",
"max-len": ["error", { "code": 120 }],
"no-empty-function": "error",
"no-multiple-empty-lines": ["error", { "max": 1 }],
"no-unexpected-multiline": "error",
"no-trailing-spaces": "error",
"no-multi-spaces": "error",
"quote-props": ["error", "as-needed"],
"space-before-function-paren": ["error", "never"],
"require-yield": "error",
"require-jsdoc": "off",
"curly": "error",
"object-curly-newline": ["error", { "multiline": true }],
"comma-style": "error",
"keyword-spacing": "error",
"space-infix-ops": "error",
"indent": [2, 2],
"no-var": "error",
"require-await": "error",
"no-restricted-globals": "error",
"no-return-await": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-floating-promises": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
"@typescript-eslint/no-non-null-assertion": "off"
}
}