-
-
Notifications
You must be signed in to change notification settings - Fork 265
Expand file tree
/
Copy path.eslintrc.json
More file actions
33 lines (33 loc) · 758 Bytes
/
Copy path.eslintrc.json
File metadata and controls
33 lines (33 loc) · 758 Bytes
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
{
"env": {
"browser": true
},
"extends": ["prettier"],
"rules": {
"brace-style": [2, "1tbs"],
"comma-style": [2, "last"],
"camelcase": 0,
"curly": 2,
"default-case": 2,
"eqeqeq": 2,
"guard-for-in": 2,
"indent": [2, 2],
"keyword-spacing": ["error", { "before": true }],
"new-cap": 0,
"no-console": 0,
"no-debugger": 2,
"no-empty": 2,
"no-floating-decimal": 2,
"no-nested-ternary": 2,
"no-undefined": 2,
"no-underscore-dangle": 0,
"no-unreachable": 2,
"radix": 2,
"quotes": [2, "single"],
"space-before-blocks": 2,
"spaced-comment": [2, "always", { "exceptions": ["-"] }],
"strict": [2, "global"],
"valid-jsdoc": [2],
"wrap-iife": [2, "any"]
}
}