From 2d48b41030c7dfedc1adc15e61a418f9c62f2c2d Mon Sep 17 00:00:00 2001 From: Aarti Panchal Date: Wed, 13 May 2026 03:01:55 +0530 Subject: [PATCH] chore: add no-console ESLint rule to prevent debug statements in production --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 519c2957..eda06b4e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -35,7 +35,8 @@ "@typescript-eslint/no-explicit-any": 0, "@typescript-eslint/no-empty-function": 0, "@typescript-eslint/no-unused-vars": 0, - "eqeqeq": 1 + "eqeqeq": 1, + "no-console": ["error", { "allow": ["warn", "error"] }] } }, {