mirror of
https://github.com/google/ormolu.git
synced 2024-11-27 03:24:10 +03:00
12 lines
312 B
Bash
Executable File
12 lines
312 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -p "(import ./default.nix {}).ormolu" -i bash --pure
|
|
#
|
|
# Format Ormolu using current version of Ormolu.
|
|
|
|
set -e
|
|
|
|
export LANG="C.UTF-8"
|
|
|
|
ormolu --mode inplace $(find src -type f \( -name "*.hs" -o -name "*.hs-boot" \))
|
|
ormolu --mode inplace $(find tests -type f -name "*.hs")
|