-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.eslintrc.json
90 lines (90 loc) · 2.32 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"extends": "eslint:recommended",
"env": {
"browser": true,
"node": true,
"es6": true
},
"globals": {
"ActiveXObject": true,
"_tpl": true
},
"rules": {
"no-debugger": "warn",
"no-console": ["warn", { "allow": ["info", "warn", "error", "time", "timeEnd"] }],
"no-constant-condition": "warn",
"block-scoped-var": "error",
"curly": ["error", "multi-line"],
"no-empty": ["error", {
"allowEmptyCatch": true
}],
"no-extra-bind": "error",
"no-extra-label": "error",
"no-extra-boolean-cast": "off",
"no-floating-decimal": "error",
"no-implied-eval": "error",
"no-iterator": "error",
"no-loop-func": "error",
"no-multi-spaces": "error",
"no-proto": "error",
"no-script-url": "error",
"no-throw-literal": "error",
"no-useless-call": "error",
"no-with": "error",
"prefer-promise-reject-errors": "error",
"wrap-iife": ["error", "inside"],
"no-use-before-define": "error",
"no-case-declarations": "off",
"array-bracket-spacing": ["error", "never"],
"block-spacing": "error",
"brace-style": ["error", "1tbs", {
"allowSingleLine": true
}],
"camelcase": "error",
"comma-dangle": "error",
"comma-spacing": "error",
"comma-style": "error",
"computed-property-spacing": "error",
"eol-last": ["error", "never"],
"func-call-spacing": "error",
"func-name-matching": "error",
"indent": ["error", "tab", {
"SwitchCase": 1
}],
"key-spacing": "error",
"keyword-spacing": "error",
"linebreak-style": "error",
"new-cap": "error",
"no-trailing-spaces": "error",
"no-whitespace-before-property": "error",
"object-curly-spacing": ["error", "always"],
"object-property-newline": "error",
"operator-linebreak": ["error", "after"],
"quotes": ["error", "single"],
"semi": "error",
"semi-spacing": "error",
"space-before-blocks": "error",
"space-before-function-paren": ["error", "never"],
"space-in-parens": "error",
"space-infix-ops": "error",
"space-unary-ops": "error",
"spaced-comment": ["error", "always", {
"block": {
"markers": ["!"],
"balanced": true
}
}],
"arrow-parens": ["error", "always"],
"arrow-spacing": "error",
"generator-star-spacing": ["error", {
"before": false,
"after": true
}],
"no-duplicate-imports": "error",
"yield-star-spacing": ["error", {
"before": false,
"after": true
}],
"no-var": "error"
}
}