mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-28 11:40:11 +03:00
16 lines
182 B
Plaintext
16 lines
182 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
|
||
|
./fmt-haskell
|
||
|
|
||
|
echo 'Done.'
|