Last active
February 2, 2020 04:54
-
-
Save coord-e/660391a3ed82f38b29d6a76a01ab5c30 to your computer and use it in GitHub Desktop.
moduleのexport listが省略されていないかチェック(Haskell)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git ls-files | grep '.hs' | grep -v -e '/Main.hs' | xargs -I% bash -c "cat % | grep where -n | head -n 1 | awk -F':' '{print \$1}' | xargs -I{} sed -n '1,{}p' % | grep -q '(' || echo %" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment