Skip to content

Commit

Permalink
ci: ignore some generic channel names
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinJWendt committed Sep 5, 2024
1 parent 6d70243 commit a7d0a56
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,11 @@ linters-settings:
- d any # generic any (e.g. data)
- 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
- t time.Time # often used as a variable name
- f func() # often used as a callback variable name
- cb func() # often used as a callback variable name
Expand Down

0 comments on commit a7d0a56

Please sign in to comment.