Skip to content
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

Update for golangci-lint 1.64.2 #91

Merged
merged 1 commit into from
Feb 12, 2025
Merged
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
6 changes: 3 additions & 3 deletions .golangci.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ disable = [
# generally
"exhaustruct",

# Not relevant after 1.22
"exportloopref",

# We tried this linter but most places we do forced type asserts are
# pretty safe, e.g., an atomic.Value when everything is encapsulated
# in a small package.
Expand Down Expand Up @@ -95,6 +92,9 @@ disable = [
# actually made it harder to read.
"tagalign",

# Deprecated since golangci-lint 1.64.0. The usetesting linter replaces it.
"tenv",

# We probably _should_ be doing this!
"thelper",

Expand Down
Loading