mirror of
https://github.com/unraid/api.git
synced 2026-01-05 16:09:49 -06:00
12 lines
270 B
JavaScript
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',
|
|
},
|
|
},
|
|
)
|