-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
40 lines (40 loc) · 1.01 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
{
"env": {
"browser": true,
"es2021": true,
"node":true,
"jasmine": true,
"codeceptjs/codeceptjs": true
},
"extends": [
"airbnb-base",
"plugin:codeceptjs/recommended"
],
"overrides": [
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"indent" : [1, 4],
"linebreak-style": 0,
"no-underscore-dangle": 0,
"import/no-extraneous-dependencies": 0,
"import/extensions": ["error", "ignorePackages", {"js" : "always"}],
"no-console": 0,
"consistent-return": 0,
"no-restricted-globals": 0,
"no-prototype-builtins": 0,
"import/prefer-default-export": 0,
"no-return-assign": 0,
"class-methods-use-this": 0,
"no-new": 0,
"no-plusplus": 0,
"no-await-in-loop": 0,
"no-undef": 0,
"eqeqeq":0,
"max-len":0
},
"plugins": ["jasmine", "codeceptjs"]
}