Update index.mdx (#2230)

This commit is contained in:
Kensei Nakada 2021-09-12 15:56:50 +09:00 committed by GitHub
parent 8c60147bff
commit 813ba7d953
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,7 +106,11 @@ Note: such `go get` installation aren't guaranteed to work. We recommend using b
<div style="margin-top: 2em;">
```sh
go get github.com/golangci/golangci-lint/cmd/golangci-lint@{.LatestVersion}
# Go 1.16+
go install github.com/golangci/golangci-lint/cmd/golangci-lint@{.LatestVersion}
# Go version < 1.16
go get -u github.com/golangci/golangci-lint/cmd/golangci-lint@{.LatestVersion}
```
</div>