Commit: f71e11b5f1003abaa289f5c8615193bfad72d3a3
Parent: fa26a28f37532e1b098e577caa42653886581572
Author: Randy Palamar
Date: Fri, 22 Sep 2023 11:13:55 -0600
fixers: json: don't use compact output by default
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/init.lua b/init.lua
@@ -9,7 +9,7 @@ lint.linters["python"] = {"black --check -", "isort --check -"}
lint.linters["rust"] = {"rustfmt --check", "clippy-driver -"}
lint.fixers = {}
-lint.fixers["json"] = {"jq -c"}
+lint.fixers["json"] = {"jq"}
lint.fixers["python"] = {"black -", "isort -"}
lint.fixers["rust"] = {"rustfmt"}