isIgnored method

bool isIgnored(
  1. String filename
)

Implementation

bool isIgnored(String filename) {
  for (final r in _rules) {
    if (r.matches(filename)) {
      return true;
    }
  }
  return false;
}