-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
35 lines (34 loc) · 963 Bytes
/
.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
{
"ecmaFeatures": {
"blockBindings": true,
"forOf": true,
"destructuring": true,
"arrowFunctions": true,
"templateStrings": true
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"quotes": [1, "single"],
"camelcase": [1, {"properties": "always"}],
"no-underscore-dangle": 0,
"eqeqeq": [2, "smart"],
"no-alert": 1,
"key-spacing": [1, { "beforeColon": false, "afterColon": true }],
"indent": [2, 2],
"no-irregular-whitespace": 1,
"eol-last": 1,
"max-nested-callbacks": [2, 6],
"comma-spacing": [1, {"before": false, "after": true}],
"no-trailing-spaces": [1, { skipBlankLines: true }],
"no-unused-vars": [1, {"vars": "all", "args": "after-used"}],
"no-console": 2,
"no-spaced-func": 1
},
"globals" :{
"angular": true
}
}