add no-console rule and remove console.log calls

Co-authored-by: Mistral AI <mistral@mistral.ai>
This commit is contained in:
2026-06-25 18:21:24 +02:00
co-authored by Mistral AI
parent 85f4a3b776
commit 9639f148f9
2 changed files with 2 additions and 3 deletions
+2 -1
View File
@@ -25,7 +25,8 @@ export default defineConfig(
{
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'no-undef': 'off'
'no-undef': 'off',
'no-console': 'error'
}
}
);