-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
36 lines (36 loc) · 1.23 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
{
"extends": "airbnb",
"globals": {
"angular": true,
"browser": true,
"window": true,
"document": true
},
"rules": {
"indent": [2, 4, {"VariableDeclarator": { "var": 1, "let": 1, "const": 1}}],
"max-len": [1, 120, 4, {"ignoreComments": true}],
"quote-props": [1, "consistent-as-needed"],
"no-cond-assign": [2, "except-parens"],
"radix": 0,
"space-infix-ops": 0,
"no-unused-vars": [1, {"vars": "local", "args": "none"}],
"one-var": [2, {"uninitialized": "always", "initialized": "never"}],
"default-case": 2,
"no-else-return": 0,
"newline-after-import": 0,
"lines-around-directive": 0,
"no-bitwise": 0,
"quotes": [2, "single", "avoid-escape"],
"no-multi-spaces": [2, { "exceptions": { "VariableDeclarator": true, "ImportDeclaration": true } }],
"comma-dangle": 0,
"key-spacing": [2, { "align": "value" }],
"no-param-reassign": 0,
"strict": 0,
"no-restricted-syntax": 0,
"consistent-return": 0,
"no-useless-escape": 0,
"global-require": 0,
"one-var-declaration-per-line": 0,
"import/no-extraneous-dependencies": 0
}
}