Skip to content

Golangci lint migration #949

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
go-version: stable

- name: Lint Go
uses: golangci/golangci-lint-action@55c2c1448f86e01eaae002a5a3a9624417608d84 # v6.5.2
uses: golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd # v7.0.0
with:
version: v1.64.8 # renovate: datasource=github-tags depName=golangci/golangci-lint
version: v2.1.5 # renovate: datasource=github-tags depName=golangci/golangci-lint

actionlint:
name: Actionlint
Expand Down
113 changes: 63 additions & 50 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,6 @@
linters-settings:
misspell:
locale: US
revive:
ignore-generated-header: true
rules:
- name: blank-imports
- name: constant-logical-expr
- name: context-as-argument
- name: context-keys-type
- name: defer
- name: dot-imports
- name: duplicated-imports
- name: empty-block
- name: error-naming
- name: error-return
- name: error-strings
- name: errorf
- name: exported
- name: import-shadowing
- name: increment-decrement
- name: indent-error-flow
- name: package-comments
- name: range
- name: range-val-address
- name: range-val-in-closure
- name: receiver-naming
- name: redefines-builtin-id
- name: string-of-int
- name: superfluous-else
- name: time-naming
- name: unchecked-type-assertion
- name: unexported-return
- name: unnecessary-stmt
- name: unreachable-code
- name: unused-parameter
- name: var-declaration
- name: var-naming
govet:
enable-all: true
version: "2"
linters:
default: none
enable:
- asasalint
- asciicheck
Expand All @@ -58,11 +20,7 @@ linters:
- gochecksumtype
- gocritic
- godot
- gofmt
- gofumpt
- goimports
- gosec
- gosimple
- gosmopolitan
- govet
- ineffassign
Expand All @@ -83,23 +41,78 @@ linters:
- reassign
- revive
- staticcheck
- stylecheck
- tagalign
- tenv
- testpackage
- thelper
- tparallel
- typecheck
- unconvert
- unparam
- unused
- usestdlibvars
- wastedassign
- whitespace
- wrapcheck
disable-all: true
settings:
govet:
enable-all: true
misspell:
locale: US
revive:
rules:
- name: blank-imports
- name: constant-logical-expr
- name: context-as-argument
- name: context-keys-type
- name: defer
- name: dot-imports
- name: duplicated-imports
- name: empty-block
- name: error-naming
- name: error-return
- name: error-strings
- name: errorf
- name: exported
- name: import-shadowing
- name: increment-decrement
- name: indent-error-flow
- name: package-comments
- name: range
- name: range-val-address
- name: range-val-in-closure
- name: receiver-naming
- name: redefines-builtin-id
- name: string-of-int
- name: superfluous-else
- name: time-naming
- name: unchecked-type-assertion
- name: unexported-return
- name: unnecessary-stmt
- name: unreachable-code
- name: unused-parameter
- name: var-declaration
- name: var-naming
exclusions:
generated: lax
presets:
- comments
- common-false-positives
- legacy
- std-error-handling
paths:
- third_party$
- builtin$
- examples$
issues:
max-issues-per-linter: 0
max-same-issues: 0
run:
timeout: 5m
formatters:
enable:
- gofmt
- gofumpt
- goimports
exclusions:
generated: lax
paths:
- third_party$
- builtin$
- examples$
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ repos:
- id: detect-private-key

- repo: https://github.com/golangci/golangci-lint
rev: v1.64.8
rev: v2.1.5
hooks:
- id: golangci-lint-full

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.DEFAULT_GOAL := build-goreleaser
# renovate: datasource=github-tags depName=golangci/golangci-lint
GOLANGCI_LINT_VERSION = v1.64.8
GOLANGCI_LINT_VERSION = v2.1.5
# renovate: datasource=docker depName=goreleaser/goreleaser
GORELEASER_VERSION = v2.9.0
# renovate: datasource=go depName=google/go-licenses
Expand Down
2 changes: 1 addition & 1 deletion cmd/sync/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ func validateAWSConfig(cfg *awsConfig) error {
if ups.Port == 0 {
return fmt.Errorf(upstreamPortErrorMsgFormat, ups.Name)
}
if ups.Kind == "" || !(ups.Kind == "http" || ups.Kind == "stream") {
if ups.Kind == "" || (ups.Kind != "http" && ups.Kind != "stream") {
return fmt.Errorf(upstreamKindErrorMsgFormat, ups.Name)
}
if ups.MaxConns < 0 {
Expand Down
2 changes: 1 addition & 1 deletion cmd/sync/azure.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ func validateAzureConfig(cfg *azureConfig) error {
if ups.Port == 0 {
return fmt.Errorf(upstreamPortErrorMsgFormat, ups.Name)
}
if ups.Kind == "" || !(ups.Kind == "http" || ups.Kind == "stream") {
if ups.Kind == "" || (ups.Kind != "http" && ups.Kind != "stream") {
return fmt.Errorf(upstreamKindErrorMsgFormat, ups.Name)
}
if ups.MaxConns < 0 {
Expand Down