-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
147 lines (146 loc) · 3.34 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
module.exports = {
root: true,
env: {
browser: true,
node: true,
es2021: true,
jest: true
},
parser: 'vue-eslint-parser',
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:vue/vue3-recommended'
],
plugins: [
'@typescript-eslint'
],
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
parser: '@typescript-eslint/parser'
},
overrides: [
{
files: ['*.d.ts'],
rules: {
'no-undef': 'off',
'init-declarations': 'off'
}
}
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-unused-vars': 1,
'no-undef': 1,
'no-var': 'error',
'no-trailing-spaces': 2,
'eol-last': ['error', 'always'],
'comma-style': ['error', 'last'],
'comma-spacing': [
'error', {
'before': false,
'after': true
}
],
'comma-dangle': ['error', 'never'],
'no-irregular-whitespace': 2,
'no-multi-spaces': 1,
'object-property-newline': ['error'],
'key-spacing': 'error',
'object-curly-spacing': ['error', 'always'],
'block-spacing': ['error', 'always'],
'computed-property-spacing': ['error', 'never'],
'func-call-spacing': ['error', 'never'],
'space-before-function-paren': [
'error',
'never'
],
'init-declarations': ['error'],
'keyword-spacing': [
'error',
{
'before': true,
'after': true
}
],
'space-infix-ops': [
'error',
{
'int32Hint':
false
}
],
'spaced-comment': [
'error',
'always',
{
'exceptions': ['-', '+']
}
],
'arrow-spacing': [
'error',
{
'before': true,
'after': true
}
],
'template-curly-spacing': ['error', 'always'],
'no-multiple-empty-lines': [
2,
{
max: 1
}
],
quotes: [
'error',
'single',
{
avoidEscape: true,
allowTemplateLiterals: true
}
],
camelcase: ['error', { properties: 'never' }],
indent: 'off',
'@typescript-eslint/indent': ['error', 2, { SwitchCase: 1 }],
'@typescript-eslint/member-delimiter-style': [
'error',
{
multiline: {
delimiter: 'none',
requireLast: false
},
singleline: {
delimiter: 'semi',
requireLast: true
}
}
],
'@typescript-eslint/no-non-null-assertion': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/no-empty-function': 0,
'@typescript-eslint/semi': ['error', 'never'],
'@typescript-eslint/no-empty-interface': 0,
'@typescript-eslint/ban-ts-comment': 0,
'@typescript-eslint/no-var-requires': 0,
'vue/no-v-html': 'off',
'vue/multi-word-component-names': 0,
'vue/singleline-html-element-content-newline': 'off',
'vue/html-closing-bracket-spacing': 'error',
'vue/no-mutating-props': 0,
'vue/script-setup-uses-vars': 'error',
'vue/v-on-event-hyphenation': ['warn', 'always', {
autofix: true
}],
'vue/html-self-closing': ['error', {
html: {
void: 'never',
normal: 'never',
component: 'always'
},
svg: 'always',
math: 'always'
}]
}
}