Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ linters-settings:
- rangeValCopy
- stringXbytes
- unnamedResult
- ifElseChain

goconst:
min-len: 3
Expand Down Expand Up @@ -123,6 +124,7 @@ issues:
- goconst
- errcheck
- gocyclo
- unparam

# Exclude known false positives
- path: pkg/crypto/crypto.go
Expand Down Expand Up @@ -187,5 +189,10 @@ issues:
linters:
- unparam

# sqlclosecheck: folder.go uses manual Close() in loops where defer isn't appropriate
- path: pkg/vault/folder\.go
linters:
- sqlclosecheck

max-issues-per-linter: 50
max-same-issues: 10
Loading
Loading