scannedFolders function

Iterable<String> scannedFolders(
  1. Iterable<LintFileReport> records
)

Implementation

Iterable<String> scannedFolders(Iterable<LintFileReport> records) =>
    records.map((record) => p.split(record.relativePath).first).toSet().toList()
      ..sort();