Skip to content

Commit

Permalink
Fix: Re-disable nolintlint
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeTurki committed Jan 2, 2025
1 parent 166a64a commit 2926456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/.golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ linters:
- nilnil # Checks that there is no simultaneous return of `nil` error and an invalid value.
- nlreturn # nlreturn checks for a new line before return and branch statements to increase code clarity
- noctx # noctx finds sending http request without context.Context
- nolintlint # Reports ill-formed or insufficient nolint directives
- paralleltest # paralleltest detects missing usage of t.Parallel() method in your Go test
- predeclared # find code that shadows one of Go's predeclared identifiers
- revive # golint replacement, finds style mistakes
Expand All @@ -103,6 +102,7 @@ linters:
disable:
- depguard # Go linter that checks if package imports are in a list of acceptable packages
- gomodguard # Allow and block list linter for direct Go module dependencies. This is different from depguard where there are different block types for example version constraints and module recommendations.
- nolintlint # Reports ill-formed or insufficient nolint directives
- prealloc # Finds slice declarations that could potentially be preallocated
- promlinter # Check Prometheus metrics naming via promlint
- rowserrcheck # checks whether Err of rows is checked successfully
Expand Down

0 comments on commit 2926456

Please sign in to comment.