2024-09-24 09:02:54 -04:00
|
|
|
import withNuxt from './frontend/.nuxt/eslint.config.mjs'
|
2024-04-15 11:08:44 -04:00
|
|
|
|
|
|
|
export default withNuxt(
|
2024-04-16 12:13:28 -04:00
|
|
|
// your custom flat configs go here, for example:
|
|
|
|
// {
|
|
|
|
// files: ['**/*.ts', '**/*.tsx'],
|
|
|
|
// rules: {
|
|
|
|
// 'no-console': 'off' // allow console.log in TypeScript files
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// ...
|
|
|
|
// }
|
|
|
|
{
|
|
|
|
rules: {
|
2024-04-17 03:55:57 -04:00
|
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
|
|
'no-control-regex': 'off',
|
|
|
|
'vue/html-self-closing': 'off',
|
|
|
|
'vue/no-v-html': 'off',
|
2024-04-16 12:13:28 -04:00
|
|
|
},
|
|
|
|
}
|
2024-04-15 11:08:44 -04:00
|
|
|
)
|