11 lines
212 B
JavaScript
11 lines
212 B
JavaScript
|
// @ts-check
|
||
|
import withNuxt from './.nuxt/eslint.config.mjs'
|
||
|
|
||
|
export default withNuxt(
|
||
|
// Your custom configs here
|
||
|
).override('nuxt/stylistic', {
|
||
|
rules: {
|
||
|
'vue/html-quotes': ['error', 'single'],
|
||
|
},
|
||
|
})
|