act/vendor/github.com/actions/workflow-parser/parser/opts.go
2019-02-06 22:36:16 -08:00

15 lines
254 B
Go

package parser
type OptionFunc func(*Parser)
func WithSuppressWarnings() OptionFunc {
return func(ps *Parser) {
ps.suppressSeverity = WARNING
}
}
func WithSuppressErrors() OptionFunc {
return func(ps *Parser) {
ps.suppressSeverity = ERROR
}
}