Skip to content
Merged
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
8 changes: 6 additions & 2 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ run:
- integration
allow-parallel-runners: true
linters:
default: none
enable:
- canonicalheader
- copyloopvar
- dogsled
- dupl
- errcheck
- errorlint
- fmtpercentv
- forbidigo
Expand All @@ -17,7 +18,7 @@ linters:
- goheader
- gosec
- govet
- intrange
- ineffassign
- misspell
- modernize
- musttag
Expand All @@ -32,6 +33,7 @@ linters:
- tparallel
- unconvert
- unparam
- unused
- usetesting
- whitespace
settings:
Expand Down Expand Up @@ -80,6 +82,8 @@ linters:
disable:
- fieldalignment
- shadow
ineffassign:
check-escaping-errors: true
misspell:
locale: US
# extra words from https://go.dev/wiki/Spelling
Expand Down
Loading