2022-08-25 12:21:35 -06:00
|
|
|
#!/bin/sh
|
|
|
|
|
2022-10-12 20:34:56 -06:00
|
|
|
set -e
|
|
|
|
|
2023-07-11 09:12:50 -06:00
|
|
|
find . -name \*.nix -exec nix fmt -- -q {} \+
|
2022-10-10 06:49:27 -06:00
|
|
|
find . -name \*.sh -exec shfmt -w {} \+
|
2022-11-16 15:00:30 -07:00
|
|
|
|
2023-03-22 10:35:46 -06:00
|
|
|
deadnix -f .
|
2023-02-10 12:43:39 -07:00
|
|
|
shfmt -w bin/deploy
|
|
|
|
shfmt -w bin/mkboot
|
2023-05-26 12:17:21 -06:00
|
|
|
# TODO: https://github.com/nerdypepper/statix/issues/68
|
|
|
|
statix check --ignore lib/default.nix .
|