-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.eslintrc
32 lines (32 loc) · 852 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
{
"parser": "babel-eslint",
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"classes": true,
"defaultParams": true,
"modules": true,
"objectLiteralShorthandMethods": true,
"objectLiteralShorthandProperties": true,
"restParams": true,
"spread": true,
"superInFunctions": true,
"templateStrings": true
},
"env": {
"browser": true,
"es6": true,
"node": true
},
"rules": {
"accessor-pairs": 1,
"camelcase": [2, {"properties": "always"}],
"curly": [2, "multi-line"],
"quotes": [1, "single"],
"new-cap": [2, {"newIsCap": true, "capIsNew": false}],
"no-this-before-super": 2,
"no-var": 2,
"semi": 2,
"no-underscore-dangle": 0
}
}