We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b34072b commit 103dc21Copy full SHA for 103dc21
.golangci.yaml
@@ -67,6 +67,10 @@ linters-settings:
67
exhaustruct:
68
include: []
69
70
+ gosec:
71
+ excludes:
72
+ - G115 #TODO: remove after fixing https://github.com/securego/gosec/issues/1212
73
+
74
linters:
75
disable-all: true
76
enable:
@@ -75,7 +79,7 @@ linters:
79
- dogsled
80
- dupl
77
81
- errcheck
78
- - exportloopref
82
+ - copyloopvar
83
- funlen
84
- gochecknoinits
85
- goconst
@@ -108,14 +112,12 @@ linters:
108
112
109
113
# don't enable:
110
114
# - asciicheck
111
- # - scopelint
115
# - gochecknoglobals
116
# - gocognit
117
# - godot
118
# - godox
- # - goerr113
119
+ # - err113
120
# - interfacer
- # - maligned
121
# - nestif
122
# - prealloc
123
# - testpackage
0 commit comments