We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63e463f commit 80e3f31Copy full SHA for 80e3f31
1 file changed
.golangci.yml
@@ -28,6 +28,37 @@ linters:
28
- performance
29
- experimental
30
- opinionated
31
+ disabled-checks:
32
+ - emptyStringTest
33
+ errcheck:
34
+ exclude-functions:
35
+ - fmt.Fprintf
36
+ - fmt.Fprintln
37
+ - (*os.File).Close
38
+ - (io.ReadCloser).Close
39
+ revive:
40
+ rules:
41
+ - name: exported
42
+ disabled: true
43
+ - name: package-comments
44
45
+ - name: unused-parameter
46
47
+ gosec:
48
+ excludes:
49
+ - G104
50
+ - G301
51
+ - G302
52
+ - G304
53
+ - G703
54
+ - G704
55
+ staticcheck:
56
+ checks:
57
+ - "all"
58
+ - "-QF1012"
59
+ - "-ST1000"
60
+ - "-ST1005"
61
+ - "-ST1020"
62
63
formatters:
64
enable:
0 commit comments