We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 546e170 + e5d5e25 commit b4b9c80Copy full SHA for b4b9c80
.golangci.toml
@@ -29,9 +29,6 @@ disable = [
29
# generally
30
"exhaustruct",
31
32
- # Not relevant after 1.22
33
- "exportloopref",
34
-
35
# We tried this linter but most places we do forced type asserts are
36
# pretty safe, e.g., an atomic.Value when everything is encapsulated
37
# in a small package.
@@ -95,6 +92,9 @@ disable = [
95
92
# actually made it harder to read.
96
93
"tagalign",
97
94
+ # Deprecated since golangci-lint 1.64.0. The usetesting linter replaces it.
+ "tenv",
+
98
# We probably _should_ be doing this!
99
"thelper",
100
0 commit comments