From ae7570d8923ee732caaa9b36bd713e29c5b01bb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 18 Mar 2022 16:27:13 +0000 Subject: [PATCH] Updated Home (markdown) --- Home.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Home.md b/Home.md index 6f0939a..864c2c3 100644 --- a/Home.md +++ b/Home.md @@ -10,6 +10,23 @@ Welcome to the treefmt wiki! includes = ["*.nix"] ``` +### go + +``` +[formatter.golang] +command = "gofumpt" +options = ["-w"] +includes = ["*.go"] +``` + +### python + +``` +[formatter.python] +command = "black" +includes = ["*.py"] +``` + ### rust ```