From 053b8dbef0eb1ffd0096d14424bb061f15172266 Mon Sep 17 00:00:00 2001 From: Scott Merchant <97430840+scme0@users.noreply.github.com> Date: Sun, 9 Jun 2024 23:24:35 +0930 Subject: [PATCH] Add lint:fix script to auto-apply linting fixes (#529) --- front/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/package.json b/front/package.json index a132c7ae..5c6a6185 100644 --- a/front/package.json +++ b/front/package.json @@ -11,6 +11,7 @@ "build:mobile:dev": "yarn workspace mobile build:dev", "update": "yarn workspace mobile update", "lint": "biome lint .", + "lint:fix": "biome lint . --apply", "format": "biome format .", "format:fix": "biome format . --write" },