Files
FloatingIsland/eslint.config.mjs
2025-09-20 12:37:37 +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'
}
}
)