-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.yml
71 lines (71 loc) · 1.61 KB
/
.eslintrc.yml
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
---
env:
node: true
# es6: true
rules:
arrow-spacing: error
comma-spacing: error
computed-property-spacing: error
constructor-super: error
dot-notation: error
keyword-spacing: error
# indent: 2
no-alert: error
no-caller: error
no-class-assign: error
no-cond-assign: error
no-const-assign: error
no-constant-condition: error
no-debugger: error
no-dupe-args: error
no-dupe-keys: error
no-dupe-class-members: error
no-duplicate-case: error
no-empty: error
no-eval: error
no-ex-assign: error
no-extra-bind: error
no-extra-boolean-cast: error
no-extra-semi: error
no-extend-native: error
no-global-assign: error
no-implied-eval: error
no-inner-declarations: error
no-invalid-this: error
no-func-assign: error
no-invalid-regexp: error
no-labels: error
no-loop-func: error
no-mixed-spaces-and-tabs: error
no-multi-spaces: error
no-multi-str: error
no-new: error
no-new-func: error
no-new-object: error
no-new-wrappers: error
no-octal: error
no-redeclare: error
no-self-compare: error
no-spaced-func: error
no-sparse-arrays: error
no-this-before-super: error
no-trailing-spaces: error
no-undef: error
no-unneeded-ternary: error
no-unused-vars: error
no-useless-concat: error
no-var: error
object-shorthand: error
operator-assignment: error
prefer-arrow-callback: error
prefer-const: error
quotes: [2, "single", { "avoidEscape": true }]
# require-jsdoc: error
semi: error
template-curly-spacing: error
use-isnan: error
# valid-jsdoc: error
valid-typeof: error
yield-star-spacing: error
parserOptions:
sourceType: module