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
2025-05-27 07:44:24 +02:00

9 lines
182 B
Go

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