Updated Home (markdown)

Jörg Thalheim 2022-03-18 16:27:13 +00:00
parent 11bae32521
commit ae7570d892

17
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
```