Ver Fonte

Bug 553 global allowlist (#554)

* add global file check

* rm whitespace
Zachary Rice há 4 anos atrás
pai
commit
12d276acd7
1 ficheiros alterados com 6 adições e 0 exclusões
  1. 6 0
      scan/unstaged.go

+ 6 - 0
scan/unstaged.go

@@ -184,6 +184,12 @@ func (us *UnstagedScanner) Scan() (Report, error) {
 				}
 			}
 
+			// Check if file is allow listed
+			if us.cfg.Allowlist.FileAllowed(filepath.Base(filename)) ||
+				us.cfg.Allowlist.PathAllowed(filename) {
+				continue
+			}
+
 			dmp := diffmatchpatch.New()
 			diffs := dmp.DiffMain(prevFileContents, currFileContents, false)
 			prettyDiff := diffPrettyText(diffs)