-
Notifications
You must be signed in to change notification settings - Fork 29
/
.eslintrc
37 lines (37 loc) · 1.02 KB
/
.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
{
"extends": "airbnb",
"globals": {
"window": true,
"document": true
},
"rules": {
"no-multi-spaces": 0,
"no-underscore-dangle": [0],
"consistent-return": 0,
"no-unused-expressions": [2, { "allowShortCircuit": true }],
"no-param-reassign": 0,
"func-names": 0,
"space-before-function-paren": [2, "never"],
"comma-dangle": 1,
"no-shadow": 0,
"guard-for-in": 0,
"no-restricted-syntax": [2, "WithStatement"],
"newline-per-chained-call": [2, { "ignoreChainWithDepth": 5 }],
"space-in-parens": 0,
"key-spacing": 0,
"no-unused-vars": [2, { "vars": "all", "args": "none" }],
"max-len": 1,
"padded-blocks": 0,
"no-console": 0,
"no-continue": 0,
"import/no-extraneous-dependencies": 0,
"import/newline-after-import": 0,
"no-mixed-operators": 0,
"quotes": ["warn", "double"],
"arrow-parens": ["error", "as-needed"],
"import/prefer-default-export": 0,
"arrow-body-style": 0,
"prefer-object-spread": 0,
"operator-linebreak": 0
}
}