forked from TheBastionBot/Bastion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
79 lines (75 loc) · 2.21 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
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
79
{
env: {
es6: true,
node: true
},
globals: {
xrequire: false
},
extends: "eslint:recommended",
parserOptions: {
ecmaVersion: 8,
sourceType: "module"
},
rules: {
# Possible Errors
no-console: "warn",
no-template-curly-in-string: "warn",
valid-jsdoc: "warn",
# Best Practices
curly: [ "warn", "multi-line" ],
default-case: "warn",
eqeqeq: [ "warn", "always" ],
dot-location: [ "warn", "object" ],
no-else-return: "error",
no-extra-label: "error",
no-floating-decimal: "error",
no-lone-blocks: "error",
no-multi-str: "error",
no-new: "error",
no-new-func: "error",
no-return-assign: "error",
no-useless-concat: "warn",
no-useless-escape: "error",
no-useless-return: "error",
require-await: "error",
yoda: [ "error", "never", { "onlyEquality": true } ],
# NodeJS/CommonJS
# handle-callback-err: ["error", "(e|E)rr"]
no-new-require: "error",
no-sync: "error",
# Style
array-bracket-spacing: [ "warn", "always" ],
block-spacing: "warn",
brace-style: [ "warn", "stroustrup", { "allowSingleLine": true } ],
comma-dangle: [ "warn", "never" ],
comma-spacing: "warn",
comma-style: "warn",
computed-property-spacing: "warn",
eol-last: "warn",
func-call-spacing: "warn",
indent: [ "warn", 2, { SwitchCase: 1, MemberExpression: 1 } ],
linebreak-style: [ "error", "unix" ],
no-array-constructor: "error",
no-multiple-empty-lines: "warn",
no-new-object: "error",
no-trailing-spaces: "warn",
no-unneeded-ternary: "error",
object-curly-spacing: ["warn", "always"],
quotes: [ "warn", "single" ],
require-jsdoc: [ "warn", { require: { FunctionDeclaration: true, MethodDefinition: true, ClassDeclaration: true, ArrowFunctionExpression: true } } ],
semi: [ "error", "always" ],
space-infix-ops: "warn",
spaced-comment: ["error", "always"],
# ES6
arrow-spacing: "error",
no-useless-computed-key: "error",
no-useless-constructor: "error",
no-useless-rename: "error",
no-var: "error",
prefer-template: "warn",
rest-spread-spacing: "error",
symbol-description: "error",
template-curly-spacing: "error"
}
}