We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5b29722 + a365c37 commit c45030dCopy full SHA for c45030d
.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