From ea119e5ffa94e657c9a2ab8f763491cc11c99409 Mon Sep 17 00:00:00 2001 From: wont-stream <143244075+wont-stream@users.noreply.github.com> Date: Thu, 10 Apr 2025 19:28:36 -0400 Subject: [PATCH] fix: add lint script to package.json for code quality checks --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index b0d31ee..d11caf7 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "type": "module", "scripts": { "dev": "bunx --bun vite", + "lint": "bunx biome check --fix --unsafe", "build": "bunx --bun tsc -b && bunx --bun vite build", "preview": "bunx --bun vite preview" },