Skip to content

Commit 1ad2679

Browse files
committed
Revert GoLangCI-Lint to v1.27.0
1 parent cdfa281 commit 1ad2679

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ It includes:
1414

1515
- [Visual Studio Code](https://code.visualstudio.com) configuration with [Go](https://code.visualstudio.com/docs/languages/go) and [Remote Container](https://code.visualstudio.com/docs/remote/containers) support,
1616
- dependency management using [Go Modules](https://github.com/golang/go/wiki/Modules),
17-
- linting with [GolangCI-Lint](https://github.com/golangci/golangci-lint),
17+
- linting with [golangci-lint](https://github.com/golangci/golangci-lint),
1818
- build automation via [Make](https://www.gnu.org/software/make), [Docker](https://docs.docker.com/engine), [GitHub Actions](https://github.com/features/actions),
1919
- releasing using [GoReleaser](https://github.com/goreleaser/goreleaser).
2020

@@ -42,7 +42,7 @@ Notable files:
4242
- [devcontainer.json](.devcontainer/devcontainer.json) - Visual Studio Code Remote Container configuration
4343
- [.github/workflows](.github/workflows) - GitHub Actions workflows
4444
- [.vscode](.vscode) - Visual Studio Code configuration files
45-
- [.golangci.yml](.golangci.yml) - GolangCI-Lint configuration
45+
- [.golangci.yml](.golangci.yml) - golangci-lint configuration
4646
- [.goreleaser.yml](.goreleaser.yml) - GoReleaser configuration
4747
- [install.sh](install.sh) - build tools installation script
4848
- [Makefile](Makefile) - Make targets used for development, [CI build](.github/workflows) and [.vscode/tasks.json](.vscode/tasks.json)

install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ set -euo pipefail
44
echo Installing goimports...
55
cd && GO111MODULE=on go get golang.org/x/tools/cmd/goimports@master && cd - > /dev/null
66

7-
echo Installing GolangCI-Lint...
8-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "$(go env GOPATH)/bin" v1.26.0
7+
echo Installing golangci-lint...
8+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "$(go env GOPATH)/bin" v1.27.0
99

1010
echo Installing GoReleaser...
1111
curl -sSfL https://install.goreleaser.com/github.com/goreleaser/goreleaser.sh | sh -s -- -b "$(go env GOPATH)/bin" v0.137.0

0 commit comments

Comments
 (0)