-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
34 lines (34 loc) · 854 Bytes
/
.eslintrc.json
File metadata and controls
34 lines (34 loc) · 854 Bytes
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
{
"env": {
"browser": true,
"es2021": true,
"node": true,
"jasmine": true,
"codeceptjs/codeceptjs": true
},
"extends": [
"airbnb-base",
"plugin:codeceptjs/recommended"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {
"no-extra-semi": 0,
"no-console": 0,
"import/no-extraneous-dependencies": 0,
"no-underscore-dangle": 0,
"no-restricted-globals": 0,
"linebreak-style": 0,
"consistent-return": 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
},
"plugins": ["jasmine", "codeceptjs"]
}