ffplayout/frontend/eslint.config.mjs

23 lines
548 B
JavaScript
Raw Permalink Normal View History

import withNuxt from './frontend/.nuxt/eslint.config.mjs'
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: {
'@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
},
}
)