-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.eslintrc.js
76 lines (73 loc) · 1.93 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
module.exports = {
root: true,
env: {
node: true,
},
extends: [
"plugin:vue/base",
"plugin:vue/essential",
"eslint:recommended",
"@vue/typescript/recommended",
// "@vue/prettier",
// "@typescript-eslint",
"plugin:vuetify/base",
],
parserOptions: {
ecmaVersion: 2020,
},
rules: {
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/ban-ts-comment": "off",
"vue/no-side-effects-in-computed-properties": "off",
"vue/no-unused-vars": "off",
"vue/no-mutating-props": "off",
"prefer-const": "off",
"no-undef": "off",
"no-prototype-builtins": "off",
"prefer-spread": "off",
"no-useless-escape": "off",
"no-var": "off",
"prefer-rest-params": "off",
"no-debugger": "off",
"no-constant-condition": "off",
"vue/multi-word-component-names": "off",
// "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
// "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"vue/html-self-closing": [
"error",
{
html: {
void: "always",
normal: "always",
component: "always",
},
svg: "always",
math: "always",
},
],
"vue/v-slot-style": [
"error",
{
atComponent: "shorthand",
default: "shorthand",
named: "shorthand",
},
],
"vue/attribute-hyphenation": [
"error",
"always",
{
ignore: [],
},
],
},
};