style(eslint): fix conflicting formatting of self-closing tags
This commit is contained in:
@@ -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
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user