func()

in processor/config.go [96:113]


func (cc *compiledConfig) shouldIgnoreField(typeName, fieldName string) bool {
	if cc == nil {
		return false
	}

	if fieldName == "-" {
		return true
	}

	fqn := typeName + "." + fieldName
	for _, re := range cc.ignoreFields {
		if re.MatchString(fqn) {
			return true
		}
	}

	return false
}