mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-10 18:21:34 +03:00
48aa77a2fa
These need to be run through the top-level nix-shell/shell.nix
16 lines
182 B
Bash
Executable File
16 lines
182 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Usage: fmt
|
|
|
|
# Run all formatters and linters ensuring codebase consistency
|
|
|
|
set -euo pipefail
|
|
|
|
cd "${0%/*}"
|
|
|
|
./fmt-shell
|
|
./fmt-nix
|
|
./fmt-haskell
|
|
|
|
echo 'Done.'
|