-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
40 lines (40 loc) · 988 Bytes
/
.eslintrc
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
{
"rules": {
"space-before-function-paren": [2, "never"],
"no-empty": 2,
"array-bracket-spacing": [2, "never", {
"singleValue": false
}],
"space-in-parens": [2, "never"],
"quote-props": [2, "as-needed"],
"key-spacing": [2, {
"beforeColon": false,
"afterColon": true
}],
"space-unary-ops": [2, {
"words": false,
"nonwords": false
}],
"no-mixed-spaces-and-tabs": 2,
"no-trailing-spaces": 2,
"comma-dangle": [2, "never"],
"yoda": [2, "never"],
"no-with": 2,
"no-multiple-empty-lines": 2,
"one-var": [2, "never"],
"space-before-blocks": [2, "always"],
"wrap-iife": 2,
"comma-style": [2, "last"],
"space-infix-ops": 2,
"camelcase": [2, {
"properties": "never"
}],
"eol-last": 2,
"new-cap": 2,
"dot-notation": 2,
"curly": [2, "multi-line"],
"consistent-this": [2, "_this"],
"linebreak-style": [2, "unix"],
"quotes": [2, "single"]
}
}