25 lines
301 B
TOML
25 lines
301 B
TOML
|
[formatter.nix]
|
||
|
command = "nix"
|
||
|
options = ["fmt"]
|
||
|
includes = ["*.nix"]
|
||
|
excludes = []
|
||
|
|
||
|
[formatter.prettier]
|
||
|
command = "prettier"
|
||
|
options = ["--write"]
|
||
|
includes = [
|
||
|
"*.json",
|
||
|
"*.yaml",
|
||
|
"*.md",
|
||
|
]
|
||
|
|
||
|
[formatter.shell]
|
||
|
command = "shfmt"
|
||
|
options = [
|
||
|
"-s",
|
||
|
"-w",
|
||
|
"-i",
|
||
|
"2",
|
||
|
]
|
||
|
includes = ["*.sh"]
|