-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc
124 lines (124 loc) · 2.46 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"extends": [
"airbnb-base",
"plugin:wdio/recommended",
"plugin:chai-friendly/recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"rules": {
"@typescript-eslint/no-this-alias": "off",
"no-restricted-syntax": 0,
"no-await-in-loop": "off",
"import/extensions": "off",
"consistent-return": "off",
"vars-on-top": "off",
"wdio/no-pause": "off",
"import/no-unresolved": "error",
"lines-between-class-members": 0,
"import/prefer-default-export": 0,
"class-methods-use-this": 0,
"import/no-cycle": 0,
"max-len": [
2,
{
"code": 300
}
],
"no-multi-spaces": [
"error",
{
"ignoreEOLComments": true
}
],
"no-console": [
"error",
{
"allow": [
"warn",
"error",
"info"
]
}
],
"@typescript-eslint/no-shadow": ["error"],
"no-shadow": "off",
"no-empty-function": ["error", { "allow": ["constructors"] }],
"prefer-destructuring": ["error", {"object": false, "array": false}],
"no-undefined": 2,
"no-unused-vars": 1,
"newline-per-chained-call": [
"error",
{
"ignoreChainWithDepth": 3
}
],
"linebreak-style": [
"off"
],
"arrow-parens": "off",
"func-names": [
"off"
],
"no-param-reassign": [
"off"
],
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true,
"avoidEscape": true
}
],
"prefer-arrow-callback": [
"off"
],
"dot-notation": [
"error",
{
"allowPattern": "[a-zA-Z]"
}
],
"no-underscore-dangle": [
"error",
{
"allow": [
"_request",
"_method",
"_options",
"_allure",
"_payload",
"_isPayloadSet"
]
}
],
"import/no-extraneous-dependencies": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off"
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [
".ts",
".tsx"
]
},
"import/resolver": {
"typescript": {
"alwaysTryTypes": true,
"project": "./tsconfig.json"
}
}
},
"plugins": [
"prettier",
"wdio",
"cucumber",
"chai-friendly",
"@typescript-eslint",
"import"
],
"globals": {}
}