getAllIgnoredForFileCodes function
Implementation
Set<String> getAllIgnoredForFileCodes(String source) {
return _ignoreForFileRegex
.allMatches(source)
.map((e) => e.group(1)!)
.expand((e) => e.split(','))
.map((e) => e.trim())
.toSet();
}