Files
FloatingIsland/eslint.config.mjs

15 lines
311 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",
"@typescript-eslint/ban-ts-comment": "off"
}
}
)