diff --git a/CHANGELOG.md b/CHANGELOG.md index a5d18c1b..1ddf3f65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ - Refactor assignment-in-expression patterns to improve code clarity and readability - Enforce strict equality checks (=== and !==) instead of loose equality (== and !=) - Replace global isNaN with Number.isNaN for safer type checking +- Ensure no variable redeclarations exist to prevent shadowing issues ## v0.10.9 - Add support for IPv6 urls diff --git a/biome.json b/biome.json index fd3791c9..3184e823 100644 --- a/biome.json +++ b/biome.json @@ -23,7 +23,6 @@ "noRedundantUseStrict": "error", "noAsyncPromiseExecutor": "off", "noGlobalIsNan": "error", - "noRedeclare": "off", "noGlobalIsFinite": "off", "noPrototypeBuiltins": "off", "noVar": "error"