From 02f761024b5ba06809c8bb822a07071f7c164af6 Mon Sep 17 00:00:00 2001 From: "Shahar \"Dawn\" Or" Date: Sat, 30 Nov 2024 15:26:18 +0700 Subject: [PATCH] chore: intentionally not use block-scoped-var --- src/test/_intentionally-unused-rules.ts | 3 +++ src/test/_rules_to_consider.ts | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/_intentionally-unused-rules.ts b/src/test/_intentionally-unused-rules.ts index 16bb91db..a515ad69 100644 --- a/src/test/_intentionally-unused-rules.ts +++ b/src/test/_intentionally-unused-rules.ts @@ -45,6 +45,9 @@ export const intentionallyUnusedRules: string[] = [ 'no-redeclare', '@typescript-eslint/no-redeclare', + // Covered by `no-var` + 'block-scoped-var', + // Covered by `@typescript-eslint/naming-convention` 'camelcase', diff --git a/src/test/_rules_to_consider.ts b/src/test/_rules_to_consider.ts index 6479616e..eb059762 100644 --- a/src/test/_rules_to_consider.ts +++ b/src/test/_rules_to_consider.ts @@ -1,7 +1,6 @@ export const rulesToConsider: Record = { 'eslint-comments': [], '': [ - 'block-scoped-var', 'capitalized-comments', 'complexity', 'consistent-this',