-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
77 lines (77 loc) · 2.6 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"array-bracket-spacing": ["warn", "never"],
"arrow-body-style": ["warn", "as-needed"],
"arrow-parens": ["warn", "as-needed"],
"arrow-spacing": "warn",
"block-scoped-var": "error",
"brace-style": ["warn", "1tbs"],
"class-methods-use-this": "warn",
"comma-spacing": ["warn", { "before": false, "after": true }],
"computed-property-spacing": ["warn", "never"],
"constructor-super": "error",
"curly": ["warn", "multi"],
"dot-notation": "warn",
"indent": ["warn", 2, { "SwitchCase": 1 }],
"key-spacing": ["warn", { "afterColon": true }],
"keyword-spacing": "warn",
"no-class-assign": ["error"],
"no-cond-assign": "error",
"no-const-assign": "error",
"no-dupe-args": "error",
"no-dupe-class-members": "error",
"no-dupe-keys": "error",
"no-duplicate-imports": "error",
"no-else-return": "error",
"no-global-assign": "error",
"no-invalid-this": "error",
"no-multi-spaces": ["warn", { "ignoreEOLComments": true }],
"no-multiple-empty-lines": ["warn", { "max": 1, "maxEOF": 1 }],
"no-param-reassign": "warn",
"no-redeclare": "error",
"no-return-assign": ["warn", "always"],
"no-shadow-restricted-names": "error",
"no-this-before-super": "error",
"no-trailing-spaces": "warn",
"no-undef": "error",
"no-unexpected-multiline": "error",
"no-unneeded-ternary": "warn",
"no-unreachable": "error",
"no-unused-private-class-members": "warn",
"no-unused-vars": ["warn", { "args": "after-used" }],
"no-use-before-define": ["error", { "functions": false }],
"no-useless-constructor": "error",
"no-useless-rename": "error",
"no-var": "error",
"object-curly-spacing": ["warn", "always"],
"object-shorthand": "warn",
"operator-assignment": ["warn", "always"],
"prefer-arrow-callback": "warn",
"prefer-const": "warn",
"prefer-destructuring": ["warn", {"object": true, "array": false}],
"prefer-spread": "error",
"quotes": ["warn", "single"],
"semi": ["warn", "never", { "beforeStatementContinuationChars": "always"}],
"semi-spacing": ["warn", {"before": false, "after": true}],
"space-before-blocks": "warn",
"space-before-function-paren": ["warn", "never"],
"space-in-parens": ["warn", "never"],
"space-infix-ops": "warn",
"spaced-comment": ["warn", "always"],
"vars-on-top": "error",
"yoda": "error"
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true,
"jsx": true
}
}
}