Skip to content

Commit

Permalink
Ignore false-positive gosec G307 linting errors
Browse files Browse the repository at this point in the history
Issues reported after upgrading golangci-lint to v1.43.0.
gosec was updated in that version from v2.8.1 to v2.9.1.

refs #202
refs golangci/golangci-lint#2299
  • Loading branch information
atc0005 committed Nov 9, 2021
1 parent 2ea3bd9 commit b490bd3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions config/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ func (c *Config) loadConfigFile(configFile string) (bool, error) {
return false, err
}
log.Debug("Config file opened")

// #nosec G307
// Believed to be a false-positive from recent gosec release
// https://github.com/securego/gosec/issues/714
defer func() {
if err := fh.Close(); err != nil {
// Ignore "file already closed" errors
Expand Down

0 comments on commit b490bd3

Please sign in to comment.