-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathes.json
More file actions
206 lines (206 loc) · 5.72 KB
/
Copy pathes.json
File metadata and controls
206 lines (206 loc) · 5.72 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
{
"accessor-pairs": "warn",
"array-callback-return": "warn",
"arrow-body-style": "warn",
"block-scoped-var": "warn",
"camelcase": "off",
"capitalized-comments": "warn",
"class-methods-use-this": "warn",
"complexity": "warn",
"consistent-return": "warn",
"consistent-this": "warn",
"constructor-super": "warn",
"curly": ["warn", "multi"],
"default-case": "warn",
"default-case-last": "warn",
"default-param-last": "warn",
"dot-notation": "warn",
"eqeqeq": "warn",
"for-direction": "warn",
"func-name-matching": "warn",
"func-names": "warn",
"func-style": "warn",
"getter-return": "warn",
"grouped-accessor-pairs": "warn",
"guard-for-in": "warn",
"id-denylist": "warn",
"id-length": ["warn", { "exceptions": ["_", "t", "$"] }],
"id-match": "warn",
"init-declarations": "warn",
"logical-assignment-operators": "warn",
"max-classes-per-file": "warn",
"max-depth": "warn",
"max-lines": "warn",
"max-lines-per-function": "warn",
"max-nested-callbacks": "warn",
"max-params": "warn",
"max-statements": "warn",
"new-cap": "warn",
"no-alert": "warn",
"no-array-constructor": "warn",
"no-async-promise-executor": "warn",
"no-await-in-loop": "warn",
"no-bitwise": "warn",
"no-caller": "warn",
"no-case-declarations": "warn",
"no-class-assign": "warn",
"no-compare-neg-zero": "warn",
"no-cond-assign": "warn",
"no-console": "warn",
"no-const-assign": "warn",
"no-constant-binary-expression": "warn",
"no-constant-condition": "warn",
"no-constructor-return": "warn",
"no-continue": "warn",
"no-control-regex": "warn",
"no-debugger": "warn",
"no-delete-var": "warn",
"no-div-regex": "warn",
"no-dupe-args": "warn",
"no-dupe-class-members": "warn",
"no-dupe-else-if": "warn",
"no-dupe-keys": "warn",
"no-duplicate-case": "warn",
"no-duplicate-imports": "warn",
"no-else-return": "warn",
"no-empty": "warn",
"no-empty-character-class": "warn",
"no-empty-function": "warn",
"no-empty-pattern": "warn",
"no-empty-static-block": "warn",
"no-eq-null": "warn",
"no-eval": "warn",
"no-ex-assign": "warn",
"no-extend-native": "warn",
"no-extra-bind": "warn",
"no-extra-boolean-cast": "warn",
"no-extra-label": "warn",
"no-fallthrough": "warn",
"no-func-assign": "warn",
"no-global-assign": "warn",
"no-implicit-coercion": "warn",
"no-implicit-globals": "warn",
"no-implied-eval": "warn",
"no-import-assign": "warn",
"no-inline-comments": "warn",
"no-inner-declarations": "warn",
"no-invalid-regexp": "warn",
"no-invalid-this": "warn",
"no-irregular-whitespace": "warn",
"no-iterator": "warn",
"no-label-var": "warn",
"no-labels": "warn",
"no-lone-blocks": "warn",
"no-lonely-if": "warn",
"no-loop-func": "warn",
"no-loss-of-precision": "warn",
"no-magic-numbers": [
"warn",
{
"detectObjects": true,
"enforceConst": true,
"ignoreReadonlyClassProperties": true
}
],
"no-misleading-character-class": "warn",
"no-multi-assign": "warn",
"no-multi-str": "warn",
"no-negated-condition": "warn",
"no-nested-ternary": "warn",
"no-new": "warn",
"no-new-func": "warn",
"no-new-native-nonconstructor": "warn",
"no-new-wrappers": "warn",
"no-nonoctal-decimal-escape": "warn",
"no-obj-calls": "warn",
"no-object-constructor": "warn",
"no-octal": "warn",
"no-octal-escape": "warn",
"no-param-reassign": "warn",
"no-plusplus": "warn",
"no-promise-executor-return": "warn",
"no-proto": "warn",
"no-prototype-builtins": "warn",
"no-redeclare": "warn",
"no-regex-spaces": "warn",
"no-restricted-exports": "warn",
"no-restricted-globals": "warn",
"no-restricted-imports": "warn",
"no-restricted-properties": "warn",
"no-restricted-syntax": "warn",
"no-return-assign": "warn",
"no-script-url": "warn",
"no-self-assign": "warn",
"no-self-compare": "warn",
"no-sequences": "warn",
"no-setter-return": "warn",
"no-shadow": "warn",
"no-shadow-restricted-names": "warn",
"no-sparse-arrays": "warn",
"no-template-curly-in-string": "warn",
"no-this-before-super": "warn",
"no-throw-literal": "warn",
"no-unassigned-vars": "warn",
"no-undef": "warn",
"no-undef-init": "warn",
"no-undefined": "off",
"no-underscore-dangle": "warn",
"no-unexpected-multiline": "warn",
"no-unmodified-loop-condition": "warn",
"no-unneeded-ternary": "warn",
"no-unreachable": "warn",
"no-unreachable-loop": "warn",
"no-unsafe-finally": "warn",
"no-unsafe-negation": "warn",
"no-unsafe-optional-chaining": "warn",
"no-unused-expressions": "warn",
"no-unused-labels": "warn",
"no-unused-private-class-members": "warn",
"no-unused-vars": "warn",
"no-use-before-define": "warn",
"no-useless-assignment": "warn",
"no-useless-backreference": "warn",
"no-useless-call": "warn",
"no-useless-catch": "warn",
"no-useless-computed-key": "warn",
"no-useless-concat": "warn",
"no-useless-constructor": "warn",
"no-useless-escape": "warn",
"no-useless-rename": "warn",
"no-useless-return": "warn",
"no-var": "warn",
"no-void": "warn",
"no-warning-comments": "warn",
"no-with": "warn",
"object-shorthand": "warn",
"one-var": "off",
"operator-assignment": "warn",
"prefer-arrow-callback": "warn",
"prefer-const": "warn",
"prefer-destructuring": "warn",
"prefer-exponentiation-operator": "warn",
"prefer-named-capture-group": "warn",
"prefer-numeric-literals": "warn",
"prefer-object-has-own": "warn",
"prefer-object-spread": "warn",
"prefer-regex-literals": "warn",
"prefer-rest-params": "warn",
"prefer-spread": "warn",
"prefer-template": "warn",
"preserve-caught-error": "warn",
"radix": "warn",
"require-atomic-updates": "warn",
"require-await": "warn",
"require-unicode-regexp": "warn",
"require-yield": "warn",
"sort-imports": "off",
"sort-keys": "off",
"sort-vars": "warn",
"strict": "warn",
"symbol-description": "warn",
"unicode-bom": "warn",
"use-isnan": "warn",
"valid-typeof": "warn",
"vars-on-top": "warn",
"yoda": "warn"
}