Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch format check to gofmt directly (#100)
The `goimport` tool cannot cope with the `golang.org/x/tools` package: if you add the checksum it says you need via `go mod download` it then complains you need to `go mod tidy`, which then removes that checksum. ``` go: downloading golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a go: updates to go.mod needed; to update it: go mod tidy ``` vs ``` missing go.sum entry for module providing package golang.org/x/tools/cmd/goimports; to add: go mod download golang.org/x/tools ```
- Loading branch information