mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 08:00:06 +01:00
26 lines
487 B
TOML
26 lines
487 B
TOML
|
|
[formatter.nix]
|
||
|
|
command = "alejandra"
|
||
|
|
includes = ["*.nix"]
|
||
|
|
excludes = ["./modules/generated/*"]
|
||
|
|
|
||
|
|
[formatter.prettier]
|
||
|
|
command = "prettier"
|
||
|
|
options = ["--plugin", "prettier-plugin-toml", "--write"]
|
||
|
|
includes = ["*.md", "*.yaml", "*.toml", "*.json"]
|
||
|
|
excludes = []
|
||
|
|
|
||
|
|
[formatter.black]
|
||
|
|
command = "black"
|
||
|
|
includes = ["*.py"]
|
||
|
|
|
||
|
|
[formatter.shell]
|
||
|
|
command = "shfmt"
|
||
|
|
options = [
|
||
|
|
"-i",
|
||
|
|
"2", # indent 2
|
||
|
|
"-s", # simplify the code
|
||
|
|
"-w", # write back to the file
|
||
|
|
|
||
|
|
]
|
||
|
|
includes = ["*.sh", "*.bash"]
|