aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIsmail Ait Bella <60820321+abellaismail7@users.noreply.github.com>2024-07-01 18:48:36 +0100
committerGitHub <noreply@github.com>2024-07-01 10:48:36 -0700
commit0cdd6a7c66a57560c91c816a567bd1d247be53c3 (patch)
treec13c8e618a9f90cce4bfb74f3ed0af67e156492c
parentc26dadf8a47a547768d1048a0d698ecec33494ce (diff)
fix(biome-check): use --write instead of deprecated --apply (#482)
-rw-r--r--lua/conform/formatters/biome-check.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/conform/formatters/biome-check.lua b/lua/conform/formatters/biome-check.lua
index 5033cc3..862923a 100644
--- a/lua/conform/formatters/biome-check.lua
+++ b/lua/conform/formatters/biome-check.lua
@@ -7,7 +7,7 @@ return {
},
command = util.from_node_modules("biome"),
stdin = true,
- args = { "check", "--apply", "--stdin-file-path", "$FILENAME" },
+ args = { "check", "--write", "--stdin-file-path", "$FILENAME" },
cwd = util.root_file({
"biome.json",
"biome.jsonc",