Files
sukr/treefmt.toml
2026-02-01 10:10:40 -07:00

29 lines
602 B
TOML

[formatter.nixfmt]
command = "nixfmt"
excludes = ["build/Cargo.nix"]
includes = ["*.nix"]
options = []
[formatter.shfmt]
command = "shfmt"
excludes = []
includes = ["*.sh", ".envrc"]
options = []
[formatter.taplo]
command = "taplo"
excludes = []
includes = ["*.toml", ".cargo/config.toml"]
options = ["fmt", "-o", "align_entries=true", "-o", "reorder_keys=true"]
[formatter.prettier]
command = "prettier"
excludes = ["*/sources.json"]
includes = ["*.json", "*.md", "*.yaml", "*.yml", "*.css"]
options = ["--write"]
[formatter.rustfmt]
command = "rustfmt"
excludes = []
includes = ["*.rs"]