From df5ed4d589fcdcec19730e7145b91dcecd3d588c Mon Sep 17 00:00:00 2001 From: Piero Lescano Date: Sun, 1 Mar 2026 11:12:08 -0500 Subject: [PATCH] fix(hledger-fmt): add --exit-zero-on-changes --- lua/conform/formatters/hledger-fmt.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/conform/formatters/hledger-fmt.lua b/lua/conform/formatters/hledger-fmt.lua index 269b0489..e6fe8476 100644 --- a/lua/conform/formatters/hledger-fmt.lua +++ b/lua/conform/formatters/hledger-fmt.lua @@ -5,6 +5,6 @@ return { description = "An opinionated hledger's journal files formatter.", }, command = "hledger-fmt", - args = { "--no-diff", "-" }, + args = { "--no-diff", "--exit-zero-on-changes", "-" }, stdin = true, }