Skip to content

v0.1.3

Choose a tag to compare

@jonbaldie jonbaldie released this 05 Jun 08:18
88646e5

Install

go install github.com/quality-gates/messgo/cmd/messgo@latest

Added

  • New opt-in opinionated ruleset bundling the checks deliberately excluded from the default go ruleset for conflicting with idiomatic Go. Run messgo ./... text opinionated, or go,opinionated to combine.

Changed

  • The default go ruleset no longer enables three rules that fight idiomatic Go:

    • ElseExpressionelse is 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 new opinionated ruleset.

See CHANGELOG.md for the full history.