-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
436 lines (391 loc) · 17.1 KB
/
.eslintrc.js
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
module.exports = {
root: true,
extends: ["airbnb-base", "plugin:vue/vue3-recommended", "prettier"],
rules: {
indent: ["error", 2, { "SwitchCase": 1, "ignoredNodes": ["ConditionalExpression"] }],
// Disallow the use of console.
// @see https://eslint.org/docs/rules/no-console
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
// Disallow the use of debugger.
// @see https://eslint.org/docs/rules/no-debugger
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
// Disallow reassignment of function parameters.
// @see https://eslint.org/docs/rules/no-param-reassign
// https://github.com/vuejs/eslint-config-airbnb/blob/master/index.js
"no-param-reassign": [
"error",
{
props: true,
ignorePropertyModificationsFor: [
"state", // for vuex state.
"acc", // for reduce accumulators.
"e", // for e.returnvalue.
],
},
],
// /////////////////////////////////////////////////////////////////////////
// `airbnb-base`: Overwrites
// @see https://github.com/vuejs/eslint-config-airbnb,
// https://github.com/airbnb/javascript
// /////////////////////////////////////////////////////////////////////////
// Disable `import/no-unresolved`, a peer dependency of `airbnb-base`.
// @see https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-unresolved.md
"import/no-unresolved": "off",
// Enforce maximum line length.
// NOTE: Please keep in sync with the `vue/max-len` rule.
// @see https://eslint.org/docs/rules/max-len
"max-len": [
"error",
120,
2,
{
ignoreUrls: true,
ignoreComments: true,
ignoreRegExpLiterals: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
},
],
// Enforce the consistent use of either backticks, double, or single quotes.
// @see https://eslint.org/docs/rules/quotes,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js
quotes: ["error", "double"],
// /////////////////////////////////////////////////////////////////////////
// `vue/vue3-recommended`: Optional (Uncategorized) Rules
// @see https://eslint.vuejs.org/rules/#uncategorized
// /////////////////////////////////////////////////////////////////////////
// Enforce specific casing for the component naming style in template.
// @see https://eslint.vuejs.org/rules/component-name-in-template-casing
"vue/component-name-in-template-casing": [
"error",
"kebab-case",
{
registeredComponentsOnly: true,
ignores: [],
},
],
// Enforce unified spacing in HTML comments.
// @see https://eslint.vuejs.org/rules/html-comment-content-spacing
"vue/html-comment-content-spacing": "error",
// Enforce `inheritAttrs` to be set to `false` when using `v-bind="$attrs"`.
// @see https://eslint.vuejs.org/rules/no-duplicate-attr-inheritance
"vue/no-duplicate-attr-inheritance": "error",
// Disallow to pass multiple objects into array to class.
// @see https://eslint.vuejs.org/rules/no-multiple-objects-in-class
"vue/no-multiple-objects-in-class": "error",
// Disallow the use of reserved names in component definitions
// @see https://eslint.vuejs.org/rules/no-reserved-component-names
"vue/no-reserved-component-names": "error",
// Disallow `target="_blank"` attribute without `rel="noopener noreferrer`".
// @see https://eslint.vuejs.org/rules/no-template-target-blank
"vue/no-template-target-blank": "error",
// Disallow unused properties.
// @see https://eslint.vuejs.org/rules/no-unused-properties
"vue/no-unused-properties": "error",
// Disallow unnecessary mustache interpolations.
// @see https://eslint.vuejs.org/rules/no-useless-mustaches
"vue/no-useless-mustaches": "error",
// Disallow unnecessary `v-bind` directives.
// @see https://eslint.vuejs.org/rules/no-useless-v-bind
"vue/no-useless-v-bind": "error",
// Require or disallow padding lines between blocks.
// @see https://eslint.vuejs.org/rules/padding-line-between-blocks
"vue/padding-line-between-blocks": "error",
// Require the component to be directly exported.
// @see https://eslint.vuejs.org/rules/require-direct-export
"vue/require-direct-export": "error",
// Require a name property in Vue components.
// @see https://eslint.vuejs.org/rules/require-name-property
"vue/require-name-property": "error",
// Enforce `v-for` directive"s delimiter style.
// @see https://eslint.vuejs.org/rules/v-for-delimiter-style
"vue/v-for-delimiter-style": "error",
// /////////////////////////////////////////////////////////////////////////
// `vue/vue3-recommended`: Extension Rules
//
// The following rules extend the rules provided by ESLint and applies them
// to the expressions within the `<template>` block of Vue Single File
// Components (SFC). The rules" values should match that of `@vue/airbnb`.
//
// @see https://eslint.vuejs.org/rules/#extension-rules
// /////////////////////////////////////////////////////////////////////////
// Disallow or enforce spaces inside of brackets.
// @see https://eslint.vuejs.org/rules/array-bracket-spacing,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/array-bracket-spacing
"vue/array-bracket-spacing": "error",
// Require space before/after arrow function"s arrow.
// @see https://eslint.vuejs.org/rules/arrow-spacing,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/es6.js,
// https://eslint.org/docs/rules/arrow-spacing
"vue/arrow-spacing": "error",
// Disallow or enforce spaces inside of blocks after opening block and
// before closing block.
// @see https://eslint.vuejs.org/rules/block-spacing,
// https://eslint.org/docs/rules/block-spacing
"vue/block-spacing": "error",
// Require Brace Style.
// @see https://eslint.vuejs.org/rules/brace-style,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/brace-style
"vue/brace-style": ["error", "1tbs", { allowSingleLine: true }],
// Require CamelCase.
// @see https://eslint.vuejs.org/rules/camelcase.html#vue-camelcase
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/camelcase
"vue/camelcase": [
"error",
{ properties: "never", ignoreDestructuring: false },
],
"no-underscore-dangle": ["error", { allow: ["_id", "__typename"] }],
// Require or disallow trailing commas.
// @see https://eslint.vuejs.org/rules/comma-dangle,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/comma-dangle
"vue/comma-dangle": [
"error",
{
arrays: "always-multiline",
objects: "always-multiline",
imports: "always-multiline",
exports: "always-multiline",
functions: "always-multiline",
},
],
// Enforces spacing around commas.
// @see https://eslint.vuejs.org/rules/comma-spacing,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/comma-spacing
"vue/comma-spacing": "error",
// Comma style.
// @see https://eslint.vuejs.org/rules/comma-style,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/comma-style
"vue/comma-style": [
"error",
"last",
{
exceptions: {
ArrayExpression: false,
ArrayPattern: false,
ArrowFunctionExpression: false,
CallExpression: false,
FunctionDeclaration: false,
FunctionExpression: false,
ImportDeclaration: false,
ObjectExpression: false,
ObjectPattern: false,
VariableDeclaration: false,
NewExpression: false,
},
},
],
// Enforce newline before and after dot.
// @see https://eslint.vuejs.org/rules/dot-location,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/best-practices.js,
// https://eslint.org/docs/rules/dot-location
"vue/dot-location": ["error", "property"],
// Require Dot Notation.
// @see https://eslint.vuejs.org/rules/dot-notation,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/best-practices.js,
// https://eslint.org/docs/rules/dot-notation
"vue/dot-notation": "error",
// Require `===` and `!==`.
// @see https://eslint.vuejs.org/rules/eqeqeq,
// https://eslint.org/docs/rules/eqeqeq
"vue/eqeqeq": ["error", "always", { null: "ignore" }],
// Require or disallow spacing between function identifiers and their
// invocations.
// @see https://eslint.vuejs.org/rules/func-call-spacing,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/func-call-spacing
"vue/func-call-spacing": "error",
// Enforce consistent spacing between keys and values in object literal
// properties.
// @see https://eslint.vuejs.org/rules/key-spacing,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/key-spacing
"vue/key-spacing": "error",
// Enforce consistent spacing before and after keywords.
// @see https://eslint.vuejs.org/rules/keyword-spacing,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/keyword-spacing
"vue/keyword-spacing": [
"error",
{
before: true,
after: true,
overrides: {
return: { after: true },
throw: { after: true },
case: { after: true },
},
},
],
// Enforce a maximum line length.
// NOTE: Please keep in sync with the `max-len` rule.
// @see https://eslint.vuejs.org/rules/max-len,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/max-len
"vue/max-len": [
"error",
120,
2,
{
ignoreUrls: true,
ignoreComments: true,
ignoreTrailingComments: true,
ignoreRegExpLiterals: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
},
],
// Disallow empty destructuring patterns.
// @see https://eslint.vuejs.org/rules/no-empty-pattern,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/best-practices.js,
// https://eslint.org/docs/rules/no-empty-pattern
"vue/no-empty-pattern": "error",
// Disallow unnecessary parentheses.
// @see https://eslint.vuejs.org/rules/no-extra-parens,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/errors.js,
// https://eslint.org/docs/rules/no-extra-parens
"vue/no-extra-parens": [
"off",
"all",
{
conditionalAssign: true,
nestedBinaryExpressions: false,
returnAssign: false,
ignoreJSX: "all",
enforceForArrowConditionals: false,
},
],
// Disallow irregular whitespace.
// @see https://eslint.vuejs.org/rules/no-irregular-whitespace,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/errors.js,
// https://eslint.org/docs/rules/no-irregular-whitespace
"vue/no-irregular-whitespace": "error",
// Disallow specified syntax.
// @see https://eslint.vuejs.org/rules/no-restricted-syntax,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/no-restricted-syntax
"vue/no-restricted-syntax": [
"error",
{
selector: "ForInStatement",
message:
"for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array.",
},
{
selector: "ForOfStatement",
message:
"iterators/generators require regenerator-runtime, which is too heavyweight for this guide to allow them. Separately, loops should be avoided in favor of array iterations.",
},
{
selector: "LabeledStatement",
message:
"Labels are a form of GOTO; using them makes code confusing and hard to maintain and understand.",
},
{
selector: "WithStatement",
message:
"`with` is disallowed in strict mode because it makes code impossible to predict and optimize.",
},
],
// Disallow sparse arrays.
// @see https://eslint.vuejs.org/rules/no-sparse-arrays,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/errors.js,
// https://eslint.org/docs/rules/no-sparse-arrays
"vue/no-sparse-arrays": "error",
// Disallow unnecessary concatenation of strings.
// @see https://eslint.vuejs.org/rules/no-useless-concat,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/best-practices.js,
// https://eslint.org/docs/rules/no-useless-concat
"vue/no-useless-concat": "error",
// Enforce consistent line breaks inside braces.
// @see https://eslint.vuejs.org/rules/object-curly-newline,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/object-curly-newline
"vue/object-curly-newline": [
"error",
{
ObjectExpression: {
minProperties: 4,
multiline: true,
consistent: true,
},
ObjectPattern: {
minProperties: 4,
multiline: true,
consistent: true,
},
ImportDeclaration: {
minProperties: 4,
multiline: true,
consistent: true,
},
ExportDeclaration: {
minProperties: 4,
multiline: true,
consistent: true,
},
},
],
// Enforce consistent spacing inside braces.
// @see https://eslint.vuejs.org/rules/object-curly-spacing,
// https://eslint.org/docs/rules/object-curly-spacing
"vue/object-curly-spacing": ["error", "always"],
// Enforce placing object properties on separate lines.
// @see https://eslint.vuejs.org/rules/object-property-newline,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/object-property-newline
"vue/object-property-newline": [
"error",
{
allowAllPropertiesOnSameLine: true,
},
],
// Suggest using template literals instead of string concatenation.
// @see https://eslint.vuejs.org/rules/prefer-template,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/es6.js,
// https://eslint.org/docs/rules/prefer-template
"vue/prefer-template": "error",
// Disallow or enforce spaces inside of parentheses.
// @see https://eslint.vuejs.org/rules/space-in-parens,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/space-in-parens
"vue/space-in-parens": "error",
// Require spacing around infix operators.
// @see https://eslint.vuejs.org/rules/space-infix-ops,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/space-infix-ops
"vue/space-infix-ops": "error",
// Require or disallow spaces before/after unary operators.
// @see https://eslint.vuejs.org/rules/space-unary-ops,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js,
// https://eslint.org/docs/rules/space-unary-ops
"vue/space-unary-ops": [
"error",
{
words: true,
nonwords: false,
overrides: {},
},
],
// Enforce Usage of Spacing in Template Strings.
// @see https://eslint.vuejs.org/rules/template-curly-spacing,
// https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/es6.js,
// https://eslint.org/docs/rules/template-curly-spacing
"vue/template-curly-spacing": "error",
"import/extensions": [0, { js: "always" }],
},
overrides: [
{
files: ["*.html"],
rules: {
"vue/comment-directive": "off",
"max-len": "off",
},
},
],
};