From b929f0956d3301d6663cf85bcf89f6f5f3a4dc9c Mon Sep 17 00:00:00 2001 From: bytedream Date: Tue, 7 Jul 2026 17:27:00 +0200 Subject: [PATCH] disallow alert --- eslint.config.mjs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index a134c30..0f88616 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -25,8 +25,9 @@ export default defineConfig( { rules: { '@typescript-eslint/no-explicit-any': 'off', - 'no-undef': 'off', - 'no-console': 'error' + 'no-alert': 'error', + 'no-console': 'error', + 'no-undef': 'off' } } );