github.com/fortexxx/gqlgen@v0.10.3-0.20191216030626-ca5ea8b21ead/.circleci/check-fmt (about)

     1  #!/bin/bash
     2  
     3  set -euo pipefail
     4  
     5  go fmt ./...
     6  if [[ $(git --no-pager diff) ]] ; then
     7      echo "you need to run "go fmt" and commit the changes"
     8      git --no-pager diff
     9      exit 1
    10  fi