Files
pichunt/eslint.config.mjs
T

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