-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpre-commit.nix
More file actions
75 lines (71 loc) · 2.09 KB
/
pre-commit.nix
File metadata and controls
75 lines (71 loc) · 2.09 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{ inputs, ... }:
{
imports = [
inputs.proto-nix.lib.preCommitModule
inputs.flake-lang.flakeModules.rustMonorepoPreCommit
];
perSystem =
{ config, pkgs, ... }:
{
devShells.default = pkgs.mkShell {
name = "dev-default";
buildInputs = config.settings.shell.tools;
shellHook = config.settings.shell.hook;
};
pre-commit = {
settings = {
excludes = [
".*spago-packages.nix$"
"lambda-buffers-codegen/data/goldens/.*"
"lambda-buffers-codegen/data/lamval-cases/.*"
"experimental/archive/.*"
"experimental/ctl-env/autogen/.*"
"experimental/plutustx-env/autogen/.*"
"lambda-buffers-frontend/data/goldens/good/work-dir/.*"
"lambda-buffers-testsuite/lbt-prelude/goldens/.*"
];
hooks = {
nixfmt-rfc-style.enable = true;
deadnix.enable = true;
statix.enable = true;
statix.settings.ignore = [ "**spago-packages.nix" ];
cabal-fmt.enable = true;
fourmolu.enable = true;
ormolu.settings.cabalDefaultExtensions = true;
hlint.enable = true;
typos.enable = true;
typos.settings = {
ignored-words = [
"substituters"
"hask"
"lits"
"Nd"
"anc"
"eit"
];
exclude = [
"*.pdf"
"*.png"
"*.log"
"fourmolu.yaml"
];
};
markdownlint.enable = true;
dhall-format.enable = true;
purty.enable = true;
rustfmt-monorepo.enable = true;
denofmt = {
enable = true;
files = "(\\.ts$)|(^tsconfig?(-base)\\.json$)";
};
denolint = {
enable = true;
files = "\\.m?ts$";
};
protolint.enable = true;
txtpbfmt.enable = true;
};
};
};
};
}