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
+1 -1
View File
@@ -340,7 +340,7 @@ async function deleteImage() {
:src="currentPicture.url" :src="currentPicture.url"
alt="Quest picture" alt="Quest picture"
class="h-24 w-32 rounded object-cover" class="h-24 w-32 rounded object-cover"
> />
<VaButton <VaButton
color="danger" color="danger"
preset="secondary" preset="secondary"
+12 -1
View File
@@ -1,5 +1,16 @@
// @ts-check // @ts-check
import withNuxt from './.nuxt/eslint.config.mjs'; 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 // Your custom configs here