-
Notifications
You must be signed in to change notification settings - Fork 38
/
devShell.nix
48 lines (43 loc) · 1.07 KB
/
devShell.nix
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
_: {
perSystem =
{
pkgs,
jsPkgs,
ensureAtRepositoryRoot,
...
}:
let
deps = with jsPkgs; [
vips
pkg-config
nodePackages_latest.nodejs
];
in
{
apps = {
pre-commit = {
type = "app";
program = pkgs.writeShellApplication {
name = "pre-commit";
runtimeInputs = deps;
text = ''
${ensureAtRepositoryRoot}
echo "Applying nix fmt (through fmt-site)"
nix run .#fmt-site
echo "Applying biome fmt"
${jsPkgs.biome}/bin/biome check . --write --unsafe \
--log-level="info" \
--log-kind="pretty" \
--diagnostic-level="info"
echo "Checking spelling"
nix build .\#checks.${pkgs.system}.spellcheck -L
echo "Running Site Check"
nix run .\#site-check
echo "Running Docs Check"
nix run .\#docs-check
'';
};
};
};
};
}