Skip to content

Commit

Permalink
ci: exclude errcheck in test files
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinJWendt committed Sep 12, 2024
1 parent eb9c65b commit e6d9c41
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,9 @@ linters-settings:
- data any # generic data
- n any # generic any
- ch chan T # common generic channel name
- ch chan int # common channel name
- ch chan any # common channel name
- ch chan struct{} # common channel name
- wg sync.WaitGroup # common WaitGroup name
- ch chan int # common generic channel name
- ch chan any # common generic channel name
- wg sync.WaitGroup # common generic WaitGroup name
- t time.Time # often used as a variable name
- f func() # often used as a callback variable name
- f func(T) # often used as a generic callback variable name
Expand All @@ -193,3 +192,4 @@ issues:
- noctx
- funlen
- dupl
- errcheck

0 comments on commit e6d9c41

Please sign in to comment.