Skip to content

Commit

Permalink
feat: bump go directive 1.23 -> 1.24
Browse files Browse the repository at this point in the history
Remove the deactivated exportloopref linter from the list of disabled
linters. Add tenv to the list of disabled linters. This will suppress
warnings from golangci-lint.
  • Loading branch information
ryboe committed Feb 13, 2025
1 parent e30927f commit c2cf778
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ linters:
disable:
- depguard # enforces that only deps on a whitelist can be used (meant for orgs, not small projects)
- exhaustruct
- exportloopref # deprecated
- forbidigo # we need to use fmt.Print*()
- govet # we run the official go vet separately
- nolintlint # we do occasionally need to suppress linter false positives
- nonamedreturns # named returns often help readability
- paralleltest # tests only take 2.5s to run. no need to parallelize
- staticcheck # dominickh doesn't recommend running staticcheck as part of golangci-lint, so we run Real Staticcheck™ separately
- tenv # deprecated
- testpackage
- varnamelen # makes bad suggestions
- wsl
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ryboe/q

go 1.23.0
go 1.24.0

require github.com/kr/pretty v0.3.1

Expand Down

0 comments on commit c2cf778

Please sign in to comment.