We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
default: none
1 parent 6a462db commit 657976bCopy full SHA for 657976b
.golangci.yml
@@ -4,11 +4,12 @@ run:
4
- integration
5
allow-parallel-runners: true
6
linters:
7
+ default: none
8
enable:
9
- canonicalheader
- - copyloopvar
10
- dogsled
11
- dupl
12
+ - errcheck
13
- errorlint
14
- fmtpercentv
15
- forbidigo
@@ -17,7 +18,7 @@ linters:
17
18
- goheader
19
- gosec
20
- govet
- - intrange
21
+ - ineffassign
22
- misspell
23
- modernize
24
- musttag
@@ -32,6 +33,7 @@ linters:
32
33
- tparallel
34
- unconvert
35
- unparam
36
+ - unused
37
- usetesting
38
- whitespace
39
settings:
@@ -80,6 +82,8 @@ linters:
80
82
disable:
81
83
- fieldalignment
84
- shadow
85
+ ineffassign:
86
+ check-escaping-errors: true
87
misspell:
88
locale: US
89
# extra words from https://go.dev/wiki/Spelling
0 commit comments