forked from rspamd/rspamd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
78 lines (76 loc) · 2.75 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
70
71
72
73
74
75
76
77
78
{
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:all",
"globals": {
"define": false
},
"rules": {
"array-bracket-newline": ["error", "consistent"],
"array-element-newline": "off",
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
"camelcase": "off",
"capitalized-comments": "off",
"comma-dangle": ["error", "only-multiline"],
"curly": ["error", "multi-line"],
"dot-location": ["error", "property"],
"func-names": "off",
// "func-style": ["error", "declaration"],
"function-call-argument-newline": "off",
"id-length": ["error", { "min": 1 }],
"indent": ["error", 4, { "SwitchCase": 1 }],
// "max-len": ["error", { "code": 120 }],
// "key-spacing": ["error", {
// "singleLine": { "afterColon": false }
// }],
"line-comment-position": "off",
"logical-assignment-operators": ["error", "never"],
"max-params": ["warn", 6],
"max-statements": ["warn", 44],
"max-statements-per-line": ["error", { "max": 2 }],
"multiline-comment-style": "off",
"multiline-ternary": ["error", "always-multiline"],
"newline-per-chained-call": ["error", { "ignoreChainWithDepth": 5 }],
"no-continue": "off",
"no-extra-parens": ["error", "functions"],
"no-implicit-globals": "off",
"no-inline-comments": "off",
"no-magic-numbers": "off",
"no-negated-condition": "off",
"no-plusplus": "off",
"no-ternary": "off",
"no-var": "off",
"object-curly-newline": ["error", { "consistent": true }],
"object-property-newline": ["error", { "allowAllPropertiesOnSameLine": true }],
"object-shorthand": "off",
"one-var": "off",
"padded-blocks": "off",
"prefer-arrow-callback": "off",
"prefer-destructuring": "off",
"prefer-object-has-own": "off",
"prefer-spread": "off",
"prefer-template": "off",
"quote-props" : ["error", "consistent-as-needed"],
"quotes": ["error", "double", { "avoidEscape": true }],
"require-jsdoc": "off",
"require-unicode-regexp": "off",
"space-before-function-paren": ["error", {
"anonymous": "always",
"named": "never"
}],
"vars-on-top": "off",
// Temporarily disabled rules
"func-style": "off",
"function-paren-newline": "off",
"key-spacing": "off",
"max-len": "off",
"max-lines": "off",
"max-lines-per-function": "off",
"no-invalid-this": "off",
"prefer-exponentiation-operator": "off",
"sort-keys": "off",
"sort-vars": "off"
}
}