mirror of
https://github.com/divnix/digga.git
synced 2024-12-22 23:51:39 +03:00
23 lines
320 B
TOML
23 lines
320 B
TOML
[formatter.nix]
|
|
command = "alejandra"
|
|
includes = ["*.nix"]
|
|
|
|
[formatter.prettier]
|
|
command = "prettier"
|
|
options = ["--write"]
|
|
includes = [
|
|
"*.json",
|
|
"*.yaml",
|
|
"*.md",
|
|
]
|
|
|
|
[formatter.shell]
|
|
command = "shfmt"
|
|
options = [
|
|
"-s",
|
|
"-w",
|
|
"-i",
|
|
"2",
|
|
]
|
|
includes = ["*.sh"]
|