patternsToIgnore property
Extracts patterns to ignore from ignoreFile
Implementation
List<String> get patternsToIgnore =>
ignoreFile.existsSync() ? ignoreFile.readAsLinesSync().where((p) => p.isNotEmpty && !p.startsWith("#")).toList() : [];
Extracts patterns to ignore from ignoreFile
List<String> get patternsToIgnore =>
ignoreFile.existsSync() ? ignoreFile.readAsLinesSync().where((p) => p.isNotEmpty && !p.startsWith("#")).toList() : [];