-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
31 lines (31 loc) · 807 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
{
"rules":{
"block-spacing": 2,
"brace-style": 2,
"camelcase": 1,
"comma-dangle": 2,
"comma-spacing": 2,
"computed-property-spacing": 2,
"curly": 2,
"eqeqeq": 2,
"func-call-spacing": 2,
"function-paren-newline": 2,
"multiline-comment-style": 2,
"no-multi-spaces": 2,
"no-unused-expressions": 2,
"no-unused-vars": 0, // Make this a 2
"no-useless-return": 2,
"object-curly-spacing": 2,
"operator-assignment": 2,
"semi": 2,
"semi-spacing": 2,
"semi-style": 2,
"space-in-parens": 2,
"switch-colon-spacing": 2,
"quotes": 0,
"vars-on-top": 1 // Make this a 2
},
"parserOptions": {
"ecmaVersion": 6
}
}