-
Notifications
You must be signed in to change notification settings - Fork 77
/
.eslintrc
50 lines (50 loc) · 1004 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
41
42
43
44
45
46
47
48
49
50
{
"extends": ["eslint:recommended","google"],
"parserOptions": {
"ecmaVersion": 6
},
"env": {
"node": 1
},
"globals": {
"exampleGlobalVariable": true
},
"rules": {
"eqeqeq": 1,
"indent": 0,
"no-tabs": 0,
"max-len": [2, 200],
"semi":0,
"valid-jsdoc":0,
"comma-spacing":0,
"quotes":0,
"no-multi-spaces":0,
"no-trailing-spaces":0,
"space-before-function-paren":0,
"spaced-comment":0,
"padded-blocks":0,
"comma-dangle":0,
"keyword-spacing":0,
"key-spacing":0,
"object-curly-spacing":0,
"require-jsdoc":0,
"no-var":0,
"block-spacing":0,
"brace-style":0,
"quote-props":0,
"no-mixed-spaces-and-tabs":0,
"space-before-blocks":0,
"func-call-spacing":0,
"eol-last":0,
"camelcase":0,
"guard-for-in":0,
"no-prototype-builtins":0,
"arrow-parens":0,
"one-var":0,
"semi-spacing":0,
"no-multiple-empty-lines":0,
"no-unused-vars":0
},
"plugins": [
]
}