From 804348966d8afd57c3ede59be9fbebbd331bc64b Mon Sep 17 00:00:00 2001 From: Weny Xu Date: Mon, 10 Apr 2023 12:42:36 +0900 Subject: [PATCH] chore: amend fmt-toml (#1347) --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index d5ac7090cc..c59656b26b 100644 --- a/Makefile +++ b/Makefile @@ -21,6 +21,10 @@ fmt: ## Format all the Rust code. .PHONY: fmt-toml fmt-toml: ## Format all TOML files. + taplo format --option "indent_string= " + +.PHONY: check-toml +check-toml: ## Check all TOML files. taplo format --check --option "indent_string= " .PHONY: docker-image