disallow alert

This commit is contained in:
2026-07-07 17:36:04 +02:00
parent 4c9825ebd5
commit b929f0956d
+3 -2
View File
@@ -25,8 +25,9 @@ export default defineConfig(
{ {
rules: { rules: {
'@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/no-explicit-any': 'off',
'no-undef': 'off', 'no-alert': 'error',
'no-console': 'error' 'no-console': 'error',
'no-undef': 'off'
} }
} }
); );