Commit: 1cad6cf6e6ef2048163f24094fb7403aec5e1efb
Parent: 1d9ac15e9f5fcd2a9675c81ccaf829202a357144
Author: Matěj Cepl
Date: Wed, 28 Aug 2024 10:57:50 +0200
black formatter should be quiet
I believe that for checking I don’t want to see anything else
than approval or not.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/init.lua b/init.lua
@@ -6,7 +6,7 @@ lint.linters["json"] = {"jq"}
lint.linters["lua"] = {"luacheck --no-color -"}
lint.linters["man"] = {"mandoc -T lint"}
lint.linters["meson"] = {"muon check -"}
-lint.linters["python"] = {"black --check -", "isort --check -"}
+lint.linters["python"] = {"black --quiet --check -", "isort --check -"}
lint.linters["rust"] = {"rustfmt --check", "clippy-driver -"}
lint.fixers = {}