1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-07-29 03:27:44 +00:00
alejandra/treefmt.toml
piegames ae019014d0 Rename all testfiles to have a file extension
Having the file extension makes it easier for editors to do syntax highlighting.
2023-03-24 11:41:04 -06:00

21 lines
477 B
TOML

[formatter]
[formatter.nix]
command = "cargo"
includes = ["*.nix"]
excludes = ["./src/alejandra/tests/cases/**"]
options = ["run", "--"]
[formatter.prettier]
command = "prettier"
includes = ["*.html", "*.js", "*.json", "*.md", "*.toml", "*.yaml"]
options = ["--plugin", "prettier-plugin-toml", "--write"]
[formatter.rust]
command = "rustfmt"
includes = ["*.rs"]
[formatter.shell]
command = "shfmt"
includes = ["*.sh"]
options = ["-bn", "-ci", "-sr", "-i", "2", "-s", "-w"]