From 58af8a7948af2dea9ed476d2fe2ad63c2281e5f4 Mon Sep 17 00:00:00 2001 From: "@zimeg" Date: Thu, 5 Dec 2024 10:26:07 -0800 Subject: [PATCH] ci: check for changes to lints separate from writing changes --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 78bb4c598..2a0ae77b8 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,8 @@ "prepare": "npm run build", "build": "npm run build:clean && tsc", "build:clean": "shx rm -rf ./dist ./coverage", - "lint": "npx @biomejs/biome check --write docs src test examples", + "lint": "npx @biomejs/biome check docs src test examples", + "lint:fix": "npx @biomejs/biome check --write docs src test examples", "test": "npm run build && npm run lint && npm run test:types && npm run test:coverage", "test:unit": "TS_NODE_PROJECT=tsconfig.json mocha --config test/unit/.mocharc.json", "test:coverage": "c8 npm run test:unit",