Basic nuxt/eslint configuration
I have fresh Nuxt project with only @nuxt/eslint module and some things are bothering me regarding the configuration...
Module was added to Nuxt with:
This add dependency under the
Is this a problem with nuxi command... since this is a dev dependency, isn't it?
Another thing is
I have manually disabled the rule in
Module was added to Nuxt with:
npx nuxi module add eslintThis add dependency under the
"dependencies" and not under the "devDependencies" like this command would if following documentation for manual setup:pnpm add -D @nuxt/eslint eslint typescriptIs this a problem with nuxi command... since this is a dev dependency, isn't it?
Another thing is
no-undef eslint rule which is showing error for defineNuxtConfig and I guess al other globals.I have manually disabled the rule in
eslint.config.mjs file... But shouldn't be this disabled by default because of all the auto-imports enabled by default?
