repochecker: fix numerous general issues with exception inheritance
This commit is contained in:
parent
057ce22fb9
commit
f9e9bfcb75
4 changed files with 15 additions and 4 deletions
|
|
@ -60,9 +60,10 @@ func (c *CheckExceptions) Filter2ndCol(str string) *CheckExceptions {
|
|||
continue
|
||||
}
|
||||
|
||||
if eval, err := filepath.Match(cols[1], str); err == nil && eval {
|
||||
if cols[1] == "spelling" {
|
||||
ret[k] = v
|
||||
} else if eval, err := filepath.Match(cols[1], str); err == nil && eval {
|
||||
ret[k] = v
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Reference in a new issue