kairoaraujo / goca

Golang Certificate Authority (CA) package
MIT License
38 stars 14 forks source link

enhance linter make recipe #15

Open necheffa opened 2 years ago

necheffa commented 2 years ago

Currently, the Makefile passes -e gosec to golangci-lint. However, this should be -E gosec or --enable gosec, as the lower-case e option is for excluding identified issues by regex.

Also consider enabling the errorlint, gofmt, gomnd, and unconvert linters.