aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters
diff options
context:
space:
mode:
authorFrancesco Pasqua <cesconix@me.com>2024-04-13 23:44:08 +0200
committerGitHub <noreply@github.com>2024-04-13 14:44:08 -0700
commit500a6ae6c10b2a96e85e64045ad9f3b16e2af7f8 (patch)
treeb969a918cb6f65ea1ca4c2544a646b863af6c3f7 /lua/conform/formatters
parent93fce97ac8ac78ef56dca7d2b8ed0d07800ae38b (diff)
fix(biome-check): use safe fixes (#373)
Diffstat (limited to 'lua/conform/formatters')
-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 1ac99e3..7115903 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-unsafe", "--stdin-file-path", "$FILENAME" },
+ args = { "check", "--apply", "--stdin-file-path", "$FILENAME" },
cwd = util.root_file({
"biome.json",
}),