-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtreefmt.nix
More file actions
48 lines (46 loc) · 784 Bytes
/
Copy pathtreefmt.nix
File metadata and controls
48 lines (46 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
_: {
projectRootFile = "flake.nix";
programs = {
# keep-sorted start block=yes
actionlint = {
enable = true;
priority = 5;
};
alejandra = {
enable = true;
priority = 4;
};
deadnix = {
enable = true;
excludes = [
"flake.nix"
];
priority = 0;
};
keep-sorted = {
enable = true;
priority = 3;
};
ruff-check = {
enable = true;
priority = 7;
};
ruff-format = {
enable = true;
priority = 6;
};
statix = {
enable = true;
priority = 1;
};
# keep-sorted end
};
settings = {
allow-missing-formatter = false;
on-unmatched = "fatal";
verbose = 2;
global.excludes = [
".editorconfig"
];
};
}