shouldExclude property
bool
get
shouldExclude
Implementation
bool get shouldExclude {
// to ignore?
if (excludeOptions!.excludeGlobs!.isNotEmpty) {
// only test on sub
for (final glob in excludeOptions!.excludeGlobs!) {
if (glob.matches(srcSub!)) {
return true;
}
}
}
return false;
}