From 8dc28bd31255cc16babc6f25f276cd4b7ef7a2b0 Mon Sep 17 00:00:00 2001 From: Tyler Jang Date: Tue, 25 Jun 2024 14:10:57 -0700 Subject: [PATCH] Remove eslint from LUV blocklist (#809) Turns out this wasn't WAI because when the LUV version was too low, we were using the fallback that queries npm latest. Regardless, removing this so that LUV will now be properly up to date. Otherwise eslint stuff is WAI --- tests/parse/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/parse/index.ts b/tests/parse/index.ts index 3a4bd4602..a2fe0b0a1 100644 --- a/tests/parse/index.ts +++ b/tests/parse/index.ts @@ -16,8 +16,7 @@ const RESULTS_FILE = path.resolve(REPO_ROOT, "results.json"); const FAILURES_FILE = path.resolve(REPO_ROOT, "failures.json"); const RERUN_FILE = path.resolve(REPO_ROOT, "reruns.txt"); -// TODO(Tyler): Remove this blocklist once eslint-friendly release is out. -const VALIDATED_LINTER_BLOCKLIST = ["eslint"]; +const VALIDATED_LINTER_BLOCKLIST: string[] = []; const RUN_ID = process.env.RUN_ID ?? ""; const TEST_REF = process.env.TEST_REF ?? "latest release";