We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fac2db6 commit 5a98440Copy full SHA for 5a98440
.golangci.yml
@@ -94,9 +94,15 @@ linters:
94
- wrapcheck
95
- wsl
96
disable:
97
+ # We use different import grouping style than gci forces.
98
- gci
99
+ # We still have many globals to get rid of.
100
- gochecknoglobals
101
+ # TODOs in the code are OK.
102
- godox
103
+ # We do not have clearly defined error types yet.
104
- goerr113
105
+ # We do not require all used structs to have all fields initialized.
106
- exhaustivestruct
107
+ # We do not care about the memory efficiency really.
108
- maligned
0 commit comments