1
0
mirror of https://github.com/mgechev/revive.git synced 2025-07-05 00:28:53 +02:00
Files
revive/internal/ifelse/args.go

9 lines
180 B
Go
Raw Normal View History

package ifelse
// Args contains arguments common to the early-return, indent-error-flow
// and superfluous-else rules
type Args struct {
PreserveScope bool
AllowJump bool
}