style(eslint): fix conflicting formatting of self-closing tags

This commit is contained in:
2026-07-31 02:27:01 +02:00
parent 45865d3122
commit 4fdea21913
2 changed files with 13 additions and 2 deletions
+12 -1
View File
@@ -1,5 +1,16 @@
// @ts-check
import withNuxt from './.nuxt/eslint.config.mjs';
export default withNuxt();
export default withNuxt({
rules: {
'vue/html-self-closing': [
'error',
{
html: {
void: 'always'
}
}
]
}
});
// Your custom configs here