From 0358acbccb5108a2f699548c08eacc9af98c5ae9 Mon Sep 17 00:00:00 2001 From: Alec Larson <1925840+aleclarson@users.noreply.github.com> Date: Tue, 2 Jul 2024 12:21:07 -0400 Subject: [PATCH] chore: use `biome check` on typescript files only MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …except when formatting. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f5440a55..a493183d 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "scripts": { "dev": "tsup --clean --watch --sourcemap", "build": "tsup --clean", - "lint": "tsc && biome check && pnpm -s dlx deno-bin@1.44.4 lint", + "lint": "tsc && biome check ./src ./tests ./benchmarks && pnpm -s dlx deno-bin@1.44.4 lint", "format": "biome check --fix --unsafe", "test": "vitest run --coverage", "test-single": "bash ./scripts/test-single.sh",