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', }], }, })