Skip to content

Instantly share code, notes, and snippets.

@coord-e
Last active February 2, 2020 04:54
Show Gist options
  • Select an option

  • Save coord-e/660391a3ed82f38b29d6a76a01ab5c30 to your computer and use it in GitHub Desktop.

Select an option

Save coord-e/660391a3ed82f38b29d6a76a01ab5c30 to your computer and use it in GitHub Desktop.
moduleのexport listが省略されていないかチェック(Haskell)
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