docs: s/v1.22.2/1.23.0/

This commit is contained in:
Denis Isaev 2020-01-19 17:03:54 +03:00
parent 8b29179a98
commit b15bf25b38
No known key found for this signature in database
GPG Key ID: A36A0EC8E27A1A01

View File

@ -73,17 +73,17 @@ use deprecated option `--enable-all` and a new linter is added or even without `
It's highly recommended to install a specific version of golangci-lint available on the [releases page](https://github.com/golangci/golangci-lint/releases).
Here is the recommended way to install golangci-lint v1.22.2:
Here is the recommended way to install golangci-lint v1.23.0:
```bash
# binary will be $(go env GOPATH)/bin/golangci-lint
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.22.2
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.23.0
# or install it into ./bin/
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.22.2
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.23.0
# In alpine linux (as it does not come with curl by default)
wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.22.2
wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.23.0
golangci-lint --version
```
@ -103,7 +103,7 @@ brew upgrade golangci/tap/golangci-lint
### Docker
```bash
docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.22.2 golangci-lint run -v
docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.23.0 golangci-lint run -v
```
### Go