forked from DREEBIT/node-modbus-rtu-tcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.yml
277 lines (259 loc) · 5.6 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
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
---
root: true
parserOptions:
ecmaVersion: 6
sourceType: module
env:
node: true
rules:
### Possible Errors ###
comma-dangle:
- error
- always-multiline
no-cond-assign: error
no-console: off
no-constant-condition: error
no-control-regex: error
no-debugger: error
no-dupe-keys: error
no-empty: error
no-empty-character-class: error
no-ex-assign: error
no-extra-boolean-cast: error
no-extra-parens:
- error
- functions
no-extra-semi: error
no-func-assign: error
no-inner-declarations:
- error
- functions
no-invalid-regexp: error
no-irregular-whitespace: error
no-negated-in-lhs: error
no-obj-calls: error
no-regex-spaces: error
no-sparse-arrays: error
no-unreachable: error
use-isnan: error
valid-jsdoc: off
valid-typeof: error
### Best Practices ###
block-scoped-var: error
complexity:
- 1
- 10
consistent-return: off
curly:
- error
- all
default-case: error
dot-notation: error
eqeqeq:
- error
- allow-null
guard-for-in: off
no-alert: error
no-caller: error
no-div-regex: off
no-else-return: error
no-eq-null: off
no-eval: error
no-extend-native: error
no-extra-bind: error
no-fallthrough: error
no-floating-decimal: error
no-implied-eval: error
no-iterator: error
no-labels: error
no-lone-blocks: error
no-loop-func: error
no-multi-spaces: error
no-multi-str: error
no-native-reassign: error
no-new: error
no-new-func: error
no-new-wrappers: error
no-octal: error
no-octal-escape: error
no-process-env: off
no-proto: error
no-redeclare: error
no-return-assign: error
no-script-url: off
no-self-compare: error
no-sequences: error
no-unused-expressions: error
no-void: off
no-warning-comments: off
no-with: error
radix: error
vars-on-top: off
wrap-iife:
- error
- any
yoda:
- error
- never
### Variables ###
no-catch-shadow: off
no-delete-var: error
no-label-var: error
no-shadow: off
no-shadow-restricted-names: error
no-undef: error
no-undef-init: error
no-unused-vars:
- error
- { vars: all, args: after-used }
no-use-before-define: off
prefer-const: error
no-var: error
### Node.js ###
no-path-concat: off
no-process-exit: off
no-restricted-modules: off
no-sync: off
### Requires ###
global-require: off
no-new-require: error
no-mixed-requires: error
### Stylistic Issues ###
block-spacing:
- error
- always
brace-style:
- error
- 1tbs
- allowSingleLine: true
camelcase: error
comma-spacing:
- error
- before: false
after: true
comma-style:
- error
- last
consistent-this:
- error
- vm
eol-last: off
func-names: off
func-style: off
key-spacing:
- error
- { beforeColon: false, afterColon: true }
max-len:
- 0
- 120
max-statements:
- 0
- 20
max-lines: off
new-cap:
- error
- { newIsCap: true, capIsNew: false }
new-parens: error
no-array-constructor: error
no-inline-comments: off
no-lonely-if: error
no-mixed-spaces-and-tabs: error
no-multiple-empty-lines:
- error
- max: 1
no-nested-ternary: error
no-new-object: error
no-spaced-func: error
no-ternary: off
no-trailing-spaces: error
no-underscore-dangle: off
one-var:
- error
- never
operator-assignment: off
padded-blocks:
- error
- never
quote-props:
- error
- as-needed
quotes:
- error
- single
- avoid-escape
semi:
- error
- always
sort-vars: off
space-before-blocks:
- error
- always
space-in-parens:
- error
- never
space-infix-ops: error
space-unary-ops:
- error
- { words: true, nonwords: false }
object-curly-spacing:
- error
- always
array-bracket-spacing:
- error
- never
computed-property-spacing:
- error
- never
wrap-regex: off
indent:
- error
- 4
- SwitchCase: 1
semi-spacing:
- error
- { before: false, after: true }
space-before-function-paren:
- error
- { anonymous: always, named: never }
spaced-comment:
- error
- always
- markers:
- global
- globals
- eslint
- eslint-disable
- "*package"
- "!"
- ","
keyword-spacing: error
accessor-pairs: error
arrow-spacing:
- error
- { before: true, after: true }
constructor-super: error
dot-location:
- error
- property
generator-star-spacing:
- error
- { before: true, after: true }
handle-callback-err:
- error
- "^(err|error)$"
no-class-assign: error
no-const-assign: error
no-dupe-args: error
no-dupe-class-members: error
no-duplicate-case: error
no-this-before-super: error
no-throw-literal: error
no-unexpected-multiline: error
no-unneeded-ternary:
- error
- defaultAssignment: false
no-useless-call: error
operator-linebreak:
- error
- after
- overrides: { "?": before, ":": before }