tags eslint nuxt How To Turn eslint Warnings OFF in VSCode Editor & Console (via config) // eslint.config.mjs export default withNuxt({ rules: { 'no-unused-vars': 'off', }, ignores: ['**/.playground/**'] }); How To Turn eslint Warnings OFF in VSCode Editor & Console (via run command) // package.json "lint": "prettier . --write && eslint --fix --quiet", How To Tell eslint to Ignore Certain Files / Directories // eslint.config.mjs export default withNuxt({ ignores: ['**/.playground/**'] }); How to Ignore an Entire File for ESLint Put this at the top of the file: /* eslint-disable */