-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
28 lines (28 loc) · 1.05 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
{
"parser" : "babel-eslint",
"env" : {
"browser" : true,
"node" : true
},
"rules" : {
"curly" : 2,
"quotes" : [2, "single"]
},
"ecmaFeatures" : {
"jsx" : true,
"arrowFunctions" : true,
"blockBindings" : true,
"defaultParams" : true,
"destructuring" : true,
"forOf" : true,
"generators" : true,
"objectLiteralComputedProperties" : true,
"objectLiteralShorthandMethods" : true,
"objectLiteralShorthandProperties": true,
"restParams" : true,
"spread" : true,
"templateStrings" : true,
"modules" : true,
"classes" : true
}
}