16 lines
223 B
JavaScript
16 lines
223 B
JavaScript
// @ts-check
|
|
import withNuxt from './.nuxt/eslint.config.mjs'
|
|
|
|
export default withNuxt({
|
|
rules: {
|
|
'vue/html-self-closing': [
|
|
'error',
|
|
{
|
|
html: {
|
|
void: 'any'
|
|
}
|
|
}
|
|
]
|
|
}
|
|
})
|