forked from loiane/javascript-datastructures-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
39 lines (39 loc) · 894 Bytes
/
.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
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"globals": {
"expect": true,
"it": true,
"describe": true,
"beforeEach": true,
"afterEach": true,
"document": false,
"navigator": false,
"window": false
},
"parser": "babel-eslint",
"extends": "airbnb-base",
"rules": {
"class-methods-use-this": 0,
"no-plusplus": 0,
"arrow-parens": 0,
"no-console": 0,
"import/prefer-default-export": 0,
"comma-dangle": 0,
"no-underscore-dangle": 0,
"no-param-reassign": 0,
"no-return-assign": 0,
"no-restricted-globals": 0,
"no-multi-assign": 0,
"prefer-destructuring": ["error", {"object": true, "array": false}],
"padded-blocks": 0,
"no-sparse-arrays": 0,
"array-bracket-spacing": 0,
"import/no-named-as-default": 0,
"implicit-arrow-linebreak": 0
}
}