vue-charms
Version:
Enjoy nice-to-have effects on your site
25 lines (24 loc) • 442 B
JavaScript
// @ts-check
import withNuxt from "./.nuxt/eslint.config.mjs";
export default withNuxt(
// Your custom configs here
{
rules: {
"vue/html-self-closing": [
"error",
{
html: {
normal: "never",
void: "always",
},
},
],
"@typescript-eslint/no-explicit-any": [
"error",
{
ignoreRestArgs: true,
},
],
},
}
);