-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc.cjs
32 lines (32 loc) · 1022 Bytes
/
.eslintrc.cjs
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
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution');
module.exports = {
root: true,
'extends': ['plugin:vue/vue3-essential', 'eslint:recommended', '@vue/eslint-config-typescript', '@vue/eslint-config-prettier/skip-formatting'],
parserOptions: {
ecmaVersion: 'latest'
},
rules: {
'linebreak-style': ['error', 'unix'],
'vue/script-setup-no-uses-vars': 'off',
'vue/multi-word-component-names': 0,
'vue/component-name-in-template-casing': ['error', 'kebab-case'],
'vue/html-self-closing': ['error', {
html: {
void: 'always',
normal: 'always',
component: 'always'
},
svg: 'always',
math: 'always'
}],
'@typescript-eslint/consistent-type-imports': ['error', {
prefer: 'type-imports',
disallowTypeAnnotations: true,
fixStyle: 'separate-type-imports'
}],
'vue/component-tags-order': ['error', {
order: ['script:not([setup])', 'script[setup]', 'template', 'style']
}]
}
};