Remove package-comments rule

This commit is contained in:
Gabe Kangas 2022-08-26 19:26:51 -07:00
parent 7541250d8e
commit 20e6b87a35
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA
2 changed files with 6 additions and 0 deletions

View File

@ -78,6 +78,11 @@ linters-settings:
- ifElseChain
- exitAfterDefer
revive:
rules:
- name: package-comments
disabled: true
forbidigo:
# Forbid the following identifiers (identifiers are written using regexp):
forbid:

View File

@ -43,6 +43,7 @@ func (s *FileWriterReceiverService) SetupFileWriterReceiverService(callbacks Fil
config.InternalHLSListenerPort = listenerPort
log.Traceln("Transcoder response service listening on: " + listenerPort)
go func() {
//nolint: gosec
if err := http.Serve(listener, httpServer); err != nil {
log.Fatalln("Unable to start internal video writing service", err)
}