From 0d231a6132d424b21c03032ca7d8e23e9781c024 Mon Sep 17 00:00:00 2001 From: Nawaz Dhandala Date: Wed, 5 Nov 2025 09:38:26 +0000 Subject: [PATCH] chore(eslint): enable no-control-regex and tidy rule formatting --- eslint.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index 0fa2a375ed..a85ab006ab 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -54,11 +54,11 @@ export default tseslint.config( rules: { "react/prop-types": "off", // TODO: Remove this rule - "no-control-regex": "off", // TODO: Remove this rule + "no-control-regex": "error", // TODO: Remove this rule "@typescript-eslint/no-explicit-any": "off", // TODO: Remove this rule "@typescript-eslint/no-var-requires": "error", "@typescript-eslint/no-duplicate-enum-values": "off", // TODO: Remove this rule - "no-constant-binary-expression": "error", // TODO: Remove this rule + "no-constant-binary-expression": "error", "@typescript-eslint/ban-ts-comment": "error", "multiline-comment-style": "error", "@typescript-eslint/no-floating-promises": "off", // TODO: Remove this rule