diff --git a/eslint.config.js b/eslint.config.js index b48901c..4a63dce 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,7 +1,13 @@ import antfu from '@antfu/eslint-config' export default antfu( - { - ignores: ['**/node_modules', '**/public', '**/dist', '**/package.json', '**/*.yaml', '**/.gitignore', '**/.env*', '**/tsconfig*'], - }, + { + ignores: ['**/node_modules', '**/public', '**/dist', '**/package.json', '**/*.yaml', '**/.gitignore', '**/.env*', '**/tsconfig*', '**/*.config.js'], + }, + { + rules: { + 'no-console': 'warn', + 'no-debugger': 'warn', + } + }, )