Skip to content

Commit 5a98440

Browse files
committed
.golangci.yml: add some reasoning why certain linters are disabled
Signed-off-by: Mateusz Gozdek <mateusz@kinvolk.io>
1 parent fac2db6 commit 5a98440

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.golangci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,15 @@ linters:
9494
- wrapcheck
9595
- wsl
9696
disable:
97+
# We use different import grouping style than gci forces.
9798
- gci
99+
# We still have many globals to get rid of.
98100
- gochecknoglobals
101+
# TODOs in the code are OK.
99102
- godox
103+
# We do not have clearly defined error types yet.
100104
- goerr113
105+
# We do not require all used structs to have all fields initialized.
101106
- exhaustivestruct
107+
# We do not care about the memory efficiency really.
102108
- maligned

0 commit comments

Comments
 (0)