Files
api/web/eslint.config.mjs
2024-05-16 14:13:01 -07:00

12 lines
270 B
JavaScript

// @ts-check
import withNuxt from './.nuxt/eslint.config.mjs'
export default withNuxt(
{
rules: {
'vue/multi-word-component-names': 'off', // turn off to allow web component parents to work and not trigger errors
'vue/no-v-html': 'off',
},
},
)