getAllIgnoredForFileCodes function

Set<String> getAllIgnoredForFileCodes(
  1. String source
)

Implementation

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