forked from broofa/BroofaJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
67 lines (66 loc) · 2.2 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
{
"root": true,
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"mocha": true
},
"parserOptions": {"ecmaVersion": 8, "sourceType": "module"},
"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": "off",
"camelcase": "warn",
"comma-spacing": ["warn", {"after": true}],
"comma-dangle": ["warn", "only-multiline"],
"dot-notation": "warn",
"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-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"],
"prefer-const": "warn",
"quotes": ["warn", "single"],
"quote-props": ["warn", "as-needed"],
"require-await": "warn",
"semi": ["warn", "always"],
"semi-spacing": "warn",
"space-before-blocks": ["warn", "always"],
"space-before-function-paren": ["warn", {
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}],
"space-in-parens": ["warn", "never"],
"strict": "warn"
}
}