We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c60147 commit 813ba7dCopy full SHA for 813ba7d
docs/src/docs/usage/install/index.mdx
@@ -106,7 +106,11 @@ Note: such `go get` installation aren't guaranteed to work. We recommend using b
106
<div style="margin-top: 2em;">
107
108
```sh
109
-go get github.com/golangci/golangci-lint/cmd/golangci-lint@{.LatestVersion}
+# Go 1.16+
110
+go install github.com/golangci/golangci-lint/cmd/golangci-lint@{.LatestVersion}
111
+
112
+# Go version < 1.16
113
+go get -u github.com/golangci/golangci-lint/cmd/golangci-lint@{.LatestVersion}
114
```
115
116
</div>
0 commit comments