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