-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc
30 lines (30 loc) · 935 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
{
"extends": "standard",
"parser": "babel-eslint",
"rules": {
"arrow-body-style": [2, "as-needed"],
"arrow-parens": [2, "as-needed"],
"arrow-spacing": [2, { "before": true, "after": true }],
"constructor-super": 2,
"generator-star-spacing": [2, { "before": true, "after": true }],
"no-class-assign": 2,
"no-confusing-arrow": 0,
"no-const-assign": 2,
"no-dupe-class-members": 2,
"no-new-symbol": 2,
"no-this-before-super": 2,
"no-useless-constructor": 2,
"no-var": 2,
"object-shorthand": [2, "always"],
"prefer-arrow-callback": 2,
"prefer-const": 2,
"prefer-reflect": [0, { "exceptions": [] }],
"prefer-rest-params": 0,
"prefer-spread": 0,
"prefer-template": 2,
"require-yield": 2,
"template-curly-spacing": [2, "never"],
"yield-star-spacing": [2, { "before": true, "after": true }],
"space-before-function-paren": [2, "never"]
}
}