9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
|
|
import { createConfigForNuxt } from '@nuxt/eslint-config/flat'
|
||
|
|
|
||
|
|
export default createConfigForNuxt().append({
|
||
|
|
rules: {
|
||
|
|
'vue/multi-word-component-names': 'off',
|
||
|
|
'vue/no-v-html': 'off'
|
||
|
|
}
|
||
|
|
})
|