-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path.eslintrc.json
69 lines (69 loc) · 2.27 KB
/
.eslintrc.json
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"root": true,
"env": {
"commonjs": true,
"es6": true,
"node": true,
"mocha": true
},
"globals": {},
"parserOptions": {
"ecmaVersion": 2019
},
"extends": ["eslint:recommended"],
"rules": {
"array-bracket-spacing": ["warn", "never"],
"arrow-body-style": ["warn", "as-needed"],
"arrow-parens": ["warn", "as-needed"],
"arrow-spacing": "warn",
"brace-style": ["warn", "1tbs"],
"camelcase": "warn",
"comma-spacing": ["warn", {"after": true}],
"dot-notation": "warn",
"eqeqeq": ["warn", "smart"],
"func-call-spacing": ["warn", "never"],
"indent": ["warn", 2, {
"SwitchCase": 1,
"FunctionDeclaration": {"parameters": 1},
"MemberExpression": 1,
"CallExpression": {"arguments": 1}
}],
"key-spacing": ["warn", {"beforeColon": false, "afterColon": true, "mode": "minimum"}],
"keyword-spacing": "warn",
"linebreak-style": ["warn", "unix"],
"lines-around-directive": ["warn", { "before": "never", "after": "always"}],
"max-len": ["off", {"code": 120, "tabWidth": 2, "ignoreTrailingComments": true, "ignoreTemplateLiterals": true}],
"no-console": "off",
"no-constant-condition": "off",
"no-else-return": "warn",
"no-empty": "off",
"no-ex-assign": "off",
"no-extra-bind": "warn",
"no-floating-decimal": "warn",
"no-multi-spaces": ["warn", {"ignoreEOLComments": true}],
"no-multiple-empty-lines": ["warn", {"max": 2, "maxBOF": 0, "maxEOF": 0}],
"no-redeclare": "off",
"no-restricted-globals": ["warn"],
"no-trailing-spaces": "warn",
"no-undef": "error",
"no-unused-vars": ["warn", {"args": "none"}],
"no-useless-return": "error",
"no-var": "warn",
"no-whitespace-before-property": "warn",
"object-curly-spacing": ["warn", "never"],
"one-var": ["warn", "never"],
"padded-blocks": ["warn", "never"],
"prefer-const": "warn",
"quote-props": ["warn", "as-needed"],
"quotes": ["warn", "single", {"allowTemplateLiterals": true }],
"semi": ["warn", "always"],
"space-before-blocks": ["warn", "always"],
"space-before-function-paren": ["warn", {
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}],
"space-in-parens": ["warn", "never"],
"space-infix-ops": ["warn"]
}
}