urbit/sh/fmt

15 lines
168 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
# Usage: fmt
# Run all formatters and linters ensuring codebase consistency
set -euo pipefail
cd "${0%/*}"
./fmt-shell
./fmt-nix
echo 'Done.'