in src/main/java/com/spotify/fmt/Formatter.java [133:138]
private FileFilter getPathFilter() {
if (cfg.verbose()) {
log.debug("Filter paths on '" + cfg.filesPathPattern() + "'.");
}
return pathname -> pathname.isDirectory() || pathname.getPath().matches(cfg.filesPathPattern());
}