Skip to content

Commit

Permalink
Update linter version and fix linting errors:
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Weinstock <[email protected]>
  • Loading branch information
jacobweinstock committed Nov 8, 2024
1 parent 4210608 commit 4600371
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ linters:
- asciicheck
- bidichk
- bodyclose
- copyloopvar
- contextcheck
- cyclop
- dogsled
Expand All @@ -26,7 +27,6 @@ linters:
- errname
- errorlint
- exhaustive
- exportloopref
- forcetypeassert
- gci
- gocognit
Expand Down Expand Up @@ -112,9 +112,6 @@ linters-settings:
- name: unconditional-recursion
- name: waitgroup-by-value

unused:
go: "1.21"

issues:
# Excluding configuration per-path, per-linter, per-text and per-source
exclude-rules:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ help:

# -- Tooling

GOLANGCI_LINT_VERSION ?= v1.55.2
GOLANGCI_LINT_VERSION ?= v1.61.0
GOLANGCI_LINT := $(TOOLS_DIR)/golangci-lint
$(GOLANGCI_LINT):
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | \
Expand Down
2 changes: 1 addition & 1 deletion internal/backend/flatfile/backend_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func TestGetEC2Instance(t *testing.T) {
}

if !cmp.Equal(&ec2Instance, tc.ExpectedInstance) {
t.Errorf(cmp.Diff(ec2Instance, tc.ExpectedInstance))
t.Error(cmp.Diff(ec2Instance, tc.ExpectedInstance))
}
}
})
Expand Down

0 comments on commit 4600371

Please sign in to comment.