Skip to content

Commit

Permalink
golangci: disable new linters we do not want
Browse files Browse the repository at this point in the history
  • Loading branch information
nadiamoe committed Oct 24, 2023
1 parent 56118fa commit 0372a1c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,8 @@ linters:
- ifshort
- nosnakecase
- depguard # Dependency whitelist, needs to be configured
- goconst # Fails if the same strings used in several places but is not a constant. Not very useful.
- inamedparam # Fails if interfaces do not have named params. Not in our code style.
- perfsprint # Suggests using strconv.* instead of fmt.* for printing numbers. Not very practical.
- protogetter # Complains when code reads var.Something if var.GetSomething() exists. Not useful.
fast: false

0 comments on commit 0372a1c

Please sign in to comment.