blob: 87cc91dfa088d77b9267c0cd09bb477001176889 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
[formatter.nix]
command = "nixfmt"
includes = ["*.nix"]
[formatter.python-format]
command = "ruff"
options = ["format"]
includes = ["*.py"]
[formatter.python-lint]
command = "ruff"
options = ["check", "--fix"]
includes = ["*.py"]
|