-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc
49 lines (47 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
env:
node: true
rules:
block-scoped-var: 2
brace-style: [1, "stroustrup", { "allowSingleLine": true }]
camelcase: 2
comma-dangle: [2, "never"]
comma-style: 2
consistent-this: [1, "self"]
dot-notation: 2
eol-last: 0
eqeqeq: 2
handle-callback-err: 1
indent: [2, 2]
key-spacing: 2
new-cap: 2
no-array-constructor: 2
no-dupe-keys: 2
no-eq-null: 2
no-extra-boolean-cast: 2
no-irregular-whitespace: 2
no-multi-spaces: 2
no-multi-str: 2
no-new-object: 2
no-reserved-keys: 2
no-shadow: 0
no-shadow-restricted-names: 2
no-spaced-func: 2
no-trailing-spaces: 2
no-underscore-dangle: 0
no-unused-vars: 2
no-use-before-define: [2, "nofunc"]
no-wrap-func: 2
one-var: [2, "never"]
padded-blocks: [2, "never"]
quotes: [2, "single"]
semi-spacing: 2
semi: [2, always]
space-after-keywords: 2
space-before-blocks: 2
space-before-function-paren: [2, "always"]
space-in-brackets: [2, "always", { "singleValue": false, "propertyName": false, "objectsInArrays": false }]
space-infix-ops: 2
spaced-line-comment: 2
strict: 0
use-isnan: 2
valid-jsdoc: 2