-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
39 lines (39 loc) · 1.08 KB
/
.eslintrc.json
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
36
37
38
39
{
"extends": [
"standard"
],
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"modules": true,
"globalReturn": true
}
},
"rules": {
"curly": ["error", "all"],
"comma-dangle": ["error", "always-multiline"],
"keyword-spacing": ["error", { "overrides": {
"if": { "after": false },
"for": { "after": false },
"while": { "after": false }
}}],
"spaced-comment": ["error", "always", {
"line": { "exceptions": ["/"], "markers": ["/"] },
"block": { "exceptions": ["*"], "markers": ["/"], "balanced": true }
}],
"space-before-function-paren": ["error", { "anonymous": "never", "named": "never", "asyncArrow": "always" }],
"prefer-promise-reject-errors": ["off"],
"no-multiple-empty-lines": ["error", { "max": 2, "maxEOF": 0, "maxBOF": 0 }],
"no-unused-vars": ["error", {"args": "none"}],
"object-curly-spacing": ["error", "always"]
}
}