-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc
53 lines (53 loc) · 1.17 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
{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"browser": false,
"node": true,
"es6": true,
"mocha": false
},
"parserOptions": {
"sourceType": "module"
},
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"classes": true,
"defaultParams": true,
"modules": true,
"spread": true,
"globalReturn": true
},
"rules": {
"no-var": 2,
"comma-dangle": 0,
"no-param-reassign": 0,
"consistent-return": 0,
"prefer-const": 1,
"arrow-body-style": 0,
"no-trailing-spaces": 0,
"padded-blocks": 0,
"semi": 0,
"object-curly-spacing": 0,
"prefer-template": 1,
"no-underscore-dangle": 0,
"no-eval": "error",
"indent": ["warn", 2],
"quotes": ["warn", "single"],
"no-console": ["error", { "allow": ["warn", "info" , "error"] }],
"space-before-function-paren": ["error", "always"],
"prefer-arrow-callback": [0, { "allowNamedFunctions": true }],
"func-names": ["error", "never"],
"no-use-before-define": [
"error", {
"functions": true,
"classes": true
}
],
"max-nested-callbacks": [
"error",
5
],
}
}