-
Notifications
You must be signed in to change notification settings - Fork 25
/
.eslintrc.json
38 lines (38 loc) · 972 Bytes
/
.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
{
"extends": "./.eslintrc.prod.json",
"rules": {
"array-bracket-newline": 1,
"array-bracket-spacing": 1,
"array-element-newline": 1,
"brace-style": 1,
"camelcase": 1,
"comma-dangle": 1,
"comma-style": 1,
"complexity": 1,
"curly": 1,
"eol-last": 1,
"eqeqeq": 1,
"indent": 1,
"keyword-spacing": 1,
"max-depth": 1,
"max-len": 1,
"new-cap": 1,
"no-bitwise": 1,
"no-caller": 1,
"no-console": 1,
"no-empty": 1,
"no-multiple-empty-lines": 1,
"no-undef": 1,
"no-unused-expressions": 1,
"no-unused-vars": 1,
"no-use-before-define": 1,
"object-curly-spacing": 1,
"quotes": 1,
"semi": 1,
"space-before-function-paren": 1,
"space-in-parens": 1,
"space-infix-ops": 1,
"space-unary-ops": 1,
"wrap-iife": 1
}
}