mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-14 18:33:09 -06:00
8 lines
220 B
Bash
Executable file
8 lines
220 B
Bash
Executable file
export GOPATH="$(pwd):$(pwd)/vendor"
|
|
|
|
# Install the linter to the local GOPATH
|
|
go get github.com/golangci/golangci-lint/cmd/golangci-lint
|
|
|
|
# Run the linter
|
|
golangci-lint run --max-same-issues 0 --max-issues-per-linter 0
|