Skip to content

Commit 26c8b19

Browse files
authored
Merge pull request #12772 from sbueringer/pr-block-fixmes
🌱 Block FIXME comments
2 parents 7b37aba + a3cdc9a commit 26c8b19

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.golangci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ linters:
2323
- ginkgolinter # ginkgo and gomega
2424
- gocritic # bugs, performance, style (we could add custom ones to this one)
2525
- godot # checks that comments end in a period
26+
- godox # block FIXMEs
2627
- goprintffuncname # printft-like functions should be named with f at the end
2728
- gosec # potential security problems
2829
- govet # basically 'go vet'
@@ -83,6 +84,9 @@ linters:
8384
- ^ \+.*
8485
- ^ ANCHOR.*
8586
- '^ (alpha|beta|GA): v.*'
87+
godox:
88+
keywords:
89+
- FIXME # FIXME's should be removed before merging PRs
8690
gosec:
8791
excludes:
8892
# integer overflow conversion int -> int32

0 commit comments

Comments
 (0)