From d8d287b5c28aa459f3ae55c64ad76ccc3862bde1 Mon Sep 17 00:00:00 2001 From: Nurliman Diara Aria <54785553+nurliman@users.noreply.github.com> Date: Fri, 12 Jul 2024 13:31:47 +0700 Subject: [PATCH] chore: update linting command to use --write instead of --apply --- .changeset/popular-turkeys-listen.md | 5 +++++ package.json | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/popular-turkeys-listen.md diff --git a/.changeset/popular-turkeys-listen.md b/.changeset/popular-turkeys-listen.md new file mode 100644 index 0000000..5e9ad93 --- /dev/null +++ b/.changeset/popular-turkeys-listen.md @@ -0,0 +1,5 @@ +--- +"@nurliman/base85": patch +--- + +update linting command to use --write instead of --apply diff --git a/package.json b/package.json index 551cd68..03d2748 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "test": "bun test", "check": "tsc --noEmit", "lint": "biome check .", - "lint:fix": "biome check . --apply", + "lint:fix": "biome check . --write", "lint-staged": "lint-staged", "changeset": "changeset", "version-packages": "changeset version", @@ -70,6 +70,6 @@ }, "packageManager": "bun@1.1.18", "lint-staged": { - "**/*.+(js|mjs|cjs|jsx|ts|cts|mts|tsx)": "biome check --apply --no-errors-on-unmatched" + "**/*.+(js|mjs|cjs|jsx|ts|cts|mts|tsx)": "biome check --write --no-errors-on-unmatched" } }