23 lines
539 B
JavaScript
23 lines
539 B
JavaScript
import withNuxt from './.nuxt/eslint.config.mjs'
|
|
|
|
export default withNuxt(
|
|
// your custom flat configs go here, for example:
|
|
// {
|
|
// files: ['**/*.ts', '**/*.tsx'],
|
|
// rules: {
|
|
// 'no-console': 'off' // allow console.log in TypeScript files
|
|
// }
|
|
// },
|
|
// {
|
|
// ...
|
|
// }
|
|
{
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'no-control-regex': 'off',
|
|
'vue/html-self-closing': 'off',
|
|
'vue/no-v-html': 'off',
|
|
},
|
|
}
|
|
)
|