Răsfoiți Sursa

Bug 553 global allowlist (#554)

* add global file check

* rm whitespace
Zachary Rice 4 ani în urmă
părinte
comite
12d276acd7
1 a modificat fișierele cu 6 adăugiri și 0 ștergeri
  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)