v0.1.3
Install
go install github.com/quality-gates/messgo/cmd/messgo@latestAdded
- New opt-in
opinionatedruleset bundling the checks deliberately excluded from the defaultgoruleset for conflicting with idiomatic Go. Runmessgo ./... text opinionated, orgo,opinionatedto combine.
Changed
-
The default
goruleset no longer enables three rules that fight idiomatic Go:ElseExpression—elseis idiomatic in Go.BooleanArgumentFlag— boolean parameters are common in Go's own standard library.UnusedFormalParameter— unused parameters are routinely required to satisfy interfaces and standard signatures (e.g.http.HandlerFunc).
They remain available via their original rulesets (
cleancode,unusedcode) and the newopinionatedruleset.
See CHANGELOG.md for the full history.