14 lines
261 B
JavaScript
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'
|
|
}
|
|
}
|
|
)
|