diff options
Diffstat (limited to '.golangci.yml')
-rw-r--r-- | .golangci.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.golangci.yml b/.golangci.yml index 5748c645..631e3692 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,4 +1,9 @@ linters-settings: + staticcheck: + checks: [ + "all", + "-SA1019" # There are valid use cases of strings.Title + ] nakedret: max-func-lines: 0 # Disallow any unnamed return statement |