-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
51 lines (48 loc) · 1.09 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
env:
es6: true
node: true
mocha: true
ecmaFeatures:
arrowFunctions: true
blockBindings: true
forOf: true
destructuring: true
rules:
indent: [2, 2]
quotes: [ 2, "single" ]
brace-style: [2, "1tbs", { "allowSingleLine": true }]
comma-style: [2, "last"]
default-case: 2
func-style: [2, "declaration"]
guard-for-in: 2
no-floating-decimal: 2
no-nested-ternary: 2
no-undefined: 2
radix: 2
space-after-function-name: [2, "never"]
space-after-keywords: [2, "always"]
space-before-blocks: 2
spaced-line-comment: [2, "always", { exceptions: ["-"]}]
strict: [2, "global"]
valid-jsdoc: [2, { prefer: { "return": "returns"}}]
wrap-iife: 2
handle-callback-err: [2, "err"]
no-new-require: 2
no-sync: 2
no-catch-shadow: 2
no-shadow: 2
no-shadow-restricted-names: 2
no-undef: 2
no-undefined: 2
no-console: 2
consistent-return: 2
curly: [2, "all"]
dot-notation: 2
eqeqeq: [2, "smart"]
no-alert: 2
no-caller: 2
no-var: 2
no-extra-semi: 2
semi: [2, "alwayss"]
key-spacing: [2, { beforeColon: false, afterColon: true }]
no-underscore-dangle: 0