You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
432 B
22 lines
432 B
import antfu from '@antfu/eslint-config'
|
|
|
|
export default await antfu({
|
|
stylistic: {
|
|
indent: 2,
|
|
quotes: 'single',
|
|
},
|
|
typescript: true,
|
|
vue: true,
|
|
rules: {
|
|
'vue/singleline-html-element-content-newline': 'off',
|
|
'vue/html-self-closing': ['error', {
|
|
html: {
|
|
void: 'always',
|
|
normal: 'always',
|
|
component: 'always',
|
|
},
|
|
svg: 'always',
|
|
math: 'always',
|
|
}],
|
|
},
|
|
})
|
|
|