60 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package processors
 | |
| 
 | |
| import (
 | |
| 	"regexp"
 | |
| 
 | |
| 	"github.com/golangci/golangci-lint/pkg/result"
 | |
| )
 | |
| 
 | |
| type Exclude struct {
 | |
| 	pattern *regexp.Regexp
 | |
| }
 | |
| 
 | |
| var _ Processor = Exclude{}
 | |
| 
 | |
| func NewExclude(pattern string) *Exclude {
 | |
| 	var patternRe *regexp.Regexp
 | |
| 	if pattern != "" {
 | |
| 		patternRe = regexp.MustCompile("(?i)" + pattern)
 | |
| 	}
 | |
| 	return &Exclude{
 | |
| 		pattern: patternRe,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (p Exclude) Name() string {
 | |
| 	return "exclude"
 | |
| }
 | |
| 
 | |
| func (p Exclude) Process(issues []result.Issue) ([]result.Issue, error) {
 | |
| 	if p.pattern == nil {
 | |
| 		return issues, nil
 | |
| 	}
 | |
| 
 | |
| 	return filterIssues(issues, func(i *result.Issue) bool {
 | |
| 		return !p.pattern.MatchString(i.Text)
 | |
| 	}), nil
 | |
| }
 | |
| 
 | |
| func (p Exclude) Finish() {}
 | |
| 
 | |
| type ExcludeCaseSensitive struct {
 | |
| 	*Exclude
 | |
| }
 | |
| 
 | |
| var _ Processor = ExcludeCaseSensitive{}
 | |
| 
 | |
| func NewExcludeCaseSensitive(pattern string) *ExcludeCaseSensitive {
 | |
| 	var patternRe *regexp.Regexp
 | |
| 	if pattern != "" {
 | |
| 		patternRe = regexp.MustCompile(pattern)
 | |
| 	}
 | |
| 	return &ExcludeCaseSensitive{
 | |
| 		&Exclude{pattern: patternRe},
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (p ExcludeCaseSensitive) Name() string {
 | |
| 	return "exclude-case-sensitive"
 | |
| }
 | 
