nixos-config/scripts/pint-fmt

8 lines
100 B
Plaintext
Raw Normal View History

2024-10-23 12:35:07 -03:00
#!/bin/sh
2024-10-25 16:43:20 -03:00
file="$(mktemp)"
2024-10-23 12:35:07 -03:00
cat - >"$file"
./vendor/bin/pint --quiet "$file"
cat "$file"
rm "$file"