mirror of
https://github.com/mgechev/revive.git
synced 2025-07-05 00:28:53 +02:00
9 lines
182 B
Go
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
|
|
}
|