-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
93 lines (92 loc) · 2.16 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
module.exports = {
root: true,
env: {
node: true,
es6: true,
browser: true,
jest: true
},
globals: {
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly'
},
extends: [
'eslint:recommended',
'plugin:vue/base',
'plugin:vue/vue3-essential',
'plugin:vue/vue3-strongly-recommended',
'plugin:vue/vue3-recommended'
],
parserOptions: {
requireConfigFile: false,
ecmaFeatures: {
legacyDecorators: true
},
parser: '@babel/eslint-parser'
},
rules: {
'vue/multi-word-component-names': 0,
'vue/no-unused-components': 1,
'vue/no-mutating-props': 0,
'vue/script-setup-uses-vars': 'error',
'vue/v-on-event-hyphenation': ['warn', 'always', {
autofix: true
}],
'vue/valid-template-root': 'off',
'vue/no-multiple-template-root': 'off',
'vue/html-self-closing': ['error', {
html: {
void: 'never',
normal: 'never',
component: 'always'
},
svg: 'always',
math: 'always'
}],
'no-unused-vars': 1,
'no-undef': 1,
'no-var': 'error',
'no-trailing-spaces': 2,
'comma-style': ['error', 'last'],
'comma-dangle': ['error', 'never'],
'no-irregular-whitespace': 2,
'no-multi-spaces': 1,
'no-multiple-empty-lines': [2, {
max: 1
}],
'eol-last': 2,
// https://lbbdegitbook.gitbooks.io/airbnb/content/key-spacing.html
'key-spacing': ['error', {
//冒号之前不能有空格
beforeColon: false,
//冒号之后有空格
afterColon: true
}],
quotes: ['error', 'single', {
avoidEscape: true,
allowTemplateLiterals: true
}],
// https://eslint.bootcss.com/docs/rules/quote-props
// 要求对象字面量属性名称使用引号 (quote-props)
'quote-props': ['error', 'as-needed'],
'prefer-const': 2,
camelcase: ['error', {
properties: 'never'
}],
indent: ['error', 2, {
SwitchCase: 1
}],
semi: ['error', 'never'],
'space-before-function-paren': 'error'
},
settings: {
'import/parsers': {
espree: [
'.js',
'.jsx'
]
}
}
}