func()

in processor/config.go [68:80]


func (cc *compiledConfig) shouldIgnoreGroupVersion(gv string) bool {
	if cc == nil {
		return false
	}

	for _, re := range cc.ignoreGroupVersions {
		if re.MatchString(gv) {
			return true
		}
	}

	return false
}