From 42d327c8f91423e7369074e59879e6780c33599a Mon Sep 17 00:00:00 2001 From: Chris Grieser <73286100+chrisgrieser@users.noreply.github.com> Date: Sat, 11 Nov 2023 14:48:46 +0100 Subject: [PATCH] chore(biome): switch back to stdin due to upstream fix --- lua/conform/formatters/biome.lua | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/lua/conform/formatters/biome.lua b/lua/conform/formatters/biome.lua index 3fb0c088..f6d6ae8e 100644 --- a/lua/conform/formatters/biome.lua +++ b/lua/conform/formatters/biome.lua @@ -5,10 +5,6 @@ return { description = "A toolchain for web projects, aimed to provide functionalities to maintain them.", }, command = "biome", - - -- pending this bug, do not use stdin: https://github.com/biomejs/biome/issues/455 - stdin = false, - args = { "format", "--write", "$FILENAME" }, - -- stdin = true, - -- args = { "format", "--stdin-file-path", "$FILENAME" }, + stdin = true, + args = { "format", "--stdin-file-path", "$FILENAME" }, }