-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
99 lines (99 loc) · 2.39 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
90
91
92
93
94
95
96
97
98
99
{
"root": true,
"extends": [
"eslint:recommended"
],
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"globals": {
"Cypress": "readonly",
"cy": "readonly",
"before": "readonly",
"beforeEach": "readonly",
"expect": "readonly"
},
"overrides": [
{
"files": [
"**/*.ts"
],
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/interface-name-prefix": ["error", {
"prefixWithI": "always"
}],
"@typescript-eslint/no-explicit-any": "off",
"indent": "off",
"@typescript-eslint/indent": ["error"],
"@typescript-eslint/ban-types": "off"
}
}
],
"rules": {
"no-prototype-builtins": "off",
"no-unused-vars": ["error", {
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": true
}],
"no-cond-assign": ["error", "always"],
"no-template-curly-in-string": "error",
"valid-typeof": ["error", {
"requireStringLiterals": true
}],
"no-duplicate-imports": "error",
"object-curly-spacing": ["error", "always"],
"prefer-object-spread": "error",
"sort-imports": "off",
"block-spacing": "error",
"brace-style": "error",
"camelcase": "error",
"comma-dangle": ["error", "always-multiline"],
"comma-spacing": ["error", {
"before": false,
"after": true
}],
"computed-property-spacing": "error",
"eol-last": "error",
"func-call-spacing": "error",
"key-spacing": ["error", {
"beforeColon": false,
"afterColon": true,
"mode": "strict"
}],
"linebreak-style": ["error", "unix"],
"max-len": ["error", {
"code": 160
}],
"indent": ["error", 2],
"no-tabs": "error",
"no-multiple-empty-lines": ["error", {
"max": 1,
"maxEOF": 0,
"maxBOF": 0
}],
"newline-per-chained-call": "error",
"no-unneeded-ternary": "error",
"quotes": ["error", "single", {
"allowTemplateLiterals": true
}],
"semi": "error",
"space-before-function-paren": ["error", {
"named": "never",
"anonymous": "always",
"asyncArrow": "always"
}],
"space-infix-ops": "error",
"arrow-parens": ["error", "as-needed"],
"arrow-spacing": ["error"]
}
}