-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
50 lines (50 loc) · 1.26 KB
/
Copy path.eslintrc.json
File metadata and controls
50 lines (50 loc) · 1.26 KB
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
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 13
},
"globals": {
"cy": "readonly",
"Cypress": "readonly",
"expect": "readonly",
"Given": "readonly",
"When": "readonly",
"Then": "readonly",
"defineParameterType": "readonly",
"error": "readonly"
},
"rules": {
"func-names": "off",
"prefer-rest-params": "off",
"consistent-return": "off",
"no-param-reassign": "off",
"max-len": "off",
"camelcase": "off",
"prefer-template": "off",
"eqeqeq": "off",
"no-plusplus": "off",
"prefer-const": "off",
"getter-return": "off",
"default-case": "off",
"no-unused-expressions": "off",
"no-unused-vars": "off",
"no-underscore-dangle": "off",
"no-useless-escape": "off",
"vars-on-top": "off",
"no-console": "off",
"no-var": "off",
"no-undef": "off",
"wrap-iife": "off",
"yoda": "off",
"global-require": "off",
"import/prefer-default-export": "off",
"implicit-arrow-linebreak": "off"
}
}