act/vendor/github.com/actions/workflow-parser/parser/opts.go

16 lines
254 B
Go
Raw Normal View History

package parser
2019-02-07 00:36:08 -06:00
type OptionFunc func(*Parser)
func WithSuppressWarnings() OptionFunc {
2019-02-07 00:36:08 -06:00
return func(ps *Parser) {
ps.suppressSeverity = WARNING
}
}
func WithSuppressErrors() OptionFunc {
2019-02-07 00:36:08 -06:00
return func(ps *Parser) {
ps.suppressSeverity = ERROR
}
}