From c6dfcec2596ef263c345fb794666987942a7b403 Mon Sep 17 00:00:00 2001 From: Jean Sidharta Date: Sun, 12 Nov 2023 21:26:05 -0500 Subject: [PATCH] fix: leptosfmt generator-options (#15) --- lua/null-ls/builtins/formatting/leptosfmt.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/null-ls/builtins/formatting/leptosfmt.lua b/lua/null-ls/builtins/formatting/leptosfmt.lua index 952c674f..7a25d883 100644 --- a/lua/null-ls/builtins/formatting/leptosfmt.lua +++ b/lua/null-ls/builtins/formatting/leptosfmt.lua @@ -13,7 +13,7 @@ return h.make_builtin({ filetypes = { "rust" }, generator_opts = { command = "leptosfmt", - args = { "--quiet=true", "--stdin=true" }, + args = { "--quiet", "--stdin" }, to_stdin = true, }, factory = h.formatter_factory,