mirror of
https://github.com/gomods/athens
synced 2026-02-03 11:00:32 +00:00
* Do not use modules in go get of tools * temp remove validation * put back verify minus gofmt * include module off in list
8 lines
195 B
Bash
Executable File
8 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# check_golint.sh
|
|
# Run the linter on everything except generated code
|
|
set -euo pipefail
|
|
|
|
GO111MODULE=off golint -set_exit_status $(GO111MODULE=off go list ./... | grep -v '/mocks')
|