17 lines
256 B
JavaScript
17 lines
256 B
JavaScript
// @ts-check
|
|
import withNuxt from './.nuxt/eslint.config.mjs';
|
|
|
|
export default withNuxt({
|
|
rules: {
|
|
'vue/html-self-closing': [
|
|
'error',
|
|
{
|
|
html: {
|
|
void: 'always'
|
|
}
|
|
}
|
|
]
|
|
}
|
|
});
|
|
// Your custom configs here
|