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.
2 parents 7b37aba + a3cdc9a commit 26c8b19Copy full SHA for 26c8b19
.golangci.yml
@@ -23,6 +23,7 @@ linters:
23
- ginkgolinter # ginkgo and gomega
24
- gocritic # bugs, performance, style (we could add custom ones to this one)
25
- godot # checks that comments end in a period
26
+ - godox # block FIXMEs
27
- goprintffuncname # printft-like functions should be named with f at the end
28
- gosec # potential security problems
29
- govet # basically 'go vet'
@@ -83,6 +84,9 @@ linters:
83
84
- ^ \+.*
85
- ^ ANCHOR.*
86
- '^ (alpha|beta|GA): v.*'
87
+ godox:
88
+ keywords:
89
+ - FIXME # FIXME's should be removed before merging PRs
90
gosec:
91
excludes:
92
# integer overflow conversion int -> int32
0 commit comments