Skip to content

Commit

Permalink
ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Dec 16, 2024
1 parent 519ab25 commit ef3d79a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/firehose/lib/src/health/coverage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ class Coverage {
.where((file) => file.status != FileStatus.removed)
.where((file) => isInSomePackage(packages, file.filename))
.where((file) => isNotATest(packages, file.filename))
.whereNot(
(file) => ignoredFiles.any((glob) => glob.matches(file.filename)))
.where(
(file) => ignoredFiles.none((glob) => glob.matches(file.filename)))
.toList();
print('The files of interest are $filesOfInterest');

Expand Down

0 comments on commit ef3d79a

Please sign in to comment.