Closed vdobler closed 5 years ago
Several tools complain if a package has no package level comment at all, eg. staticcheck:
staticcheck ./... statik/statik.go:3:1: at least one file in a package should have a package comment (ST1000)
I'd like to propose the addition of a new command line flag with a useful default, e.g.
flagPkgCmt = flag.String("c", "Package statik contains static assets.", "Package comment")
(An empty value for *flagPgkCmt would omit the comment.)
If this sounds sensible I could provide a PR.
Happy to review a PR for this feature!
This has been implemented in #52 and merged. Close?
Several tools complain if a package has no package level comment at all, eg. staticcheck:
I'd like to propose the addition of a new command line flag with a useful default, e.g.
(An empty value for *flagPgkCmt would omit the comment.)
If this sounds sensible I could provide a PR.