Skip to content

Commit 3b94b13

Browse files
authored
fix: update an invalid check in golangci-lint govet config (#1269)
This fixes an invalid check that's listed under golangci-lint's govet config, which is causing lint failures in CI.
1 parent ca61c3d commit 3b94b13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ linters-settings:
2828
govet:
2929
# These govet checks are disabled by default, but they're useful.
3030
enable:
31-
- niliness
31+
- nilness
3232
- reflectvaluecompare
3333
- sortslice
3434
- unusedwrite

0 commit comments

Comments
 (0)