Files
FloatingIsland/eslint.config.mjs
2025-09-24 00:58:15 +08:00

14 lines
261 B
JavaScript

// @ts-check
import withNuxt from "./.nuxt/eslint.config.mjs"
export default withNuxt(
// Your custom configs here
{
rules: {
"vue/multi-word-component-names": "off",
"vue/no-v-html": "off",
"vue/html-self-closing": "off"
}
}
)