blob: ece9c3e0408946d0ead0aa46371917fe9f5099a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[formatter.nix]
command = "nixpkgs-fmt"
includes = ["*.nix"]
[formatter.toml]
command = "taplo"
options = ["format", "$@"]
includes = ["*.toml"]
[formatter.prettier]
command = "prettier"
options = ["--write"]
includes = [
"*.css",
"*.md",
]
|