func isIgnortedIndexingFile()

in backend/analyzer/entities/indexing.go [40:48]


func isIgnortedIndexingFile(path string) bool {
	if isIndexingFolder(path) && (filepath.Ext(path) == ".json" ||
		strings.Contains(filepath.Base(path), "changed-files-pushing-events.json") ||
		strings.Contains(filepath.Base(path), "report.html") ||
		strings.Contains(filepath.Base(path), "shared-index-events.json")) {
		return true
	}
	return false
}