10 lines
275 B
JavaScript
10 lines
275 B
JavaScript
// Run `nuxt prepare` once before linting so .nuxt/eslint.config.mjs is generated.
|
|
import withNuxt from './.nuxt/eslint.config.mjs';
|
|
|
|
export default withNuxt({
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'warn',
|
|
'vue/multi-word-component-names': 'off',
|
|
},
|
|
});
|