mirror of
https://github.com/urbit/shrub.git
synced 2024-11-30 22:15:47 +03:00
15 lines
168 B
Plaintext
15 lines
168 B
Plaintext
|
#!/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.'
|