-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc.js
41 lines (41 loc) · 1.04 KB
/
.eslintrc.js
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
module.exports = {
"env": {
"es6": true
},
"extends": "google",
"rules": {
"indent": [2, 4],
"brace-style": [2, "1tbs"],
"space-before-function-paren": [1, "never"],
"spaced-comment": 0,
"quotes": [2, "double", { "avoidEscape": true }],
"no-negated-condition": 0,
"max-len": 0,
"no-warning-comments": 0,
"no-else-return": 0,
"no-lonely-if": 0,
"require-jsdoc": 0,
"no-use-before-define": 0,
"eqeqeq": 0,
"one-var": 0,
"radix": 0,
"camelcase": 0,
"no-useless-escape": 0,
"new-cap": 0,
"no-unneeded-ternary": 0,
"default-case": 0,
"no-constant-condition": 0,
"no-fallthrough": 0,
"no-new": 0,
"no-new-func": 0,
"no-caller": 0,
"no-var": 0,
"comma-dangle": ["error", "never"],
"arrow-parens": 0,
"valid-jsdoc": 0
},
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module"
}
};