Add more default excluded items

pull/137/head
Rafał Mikrut 3 years ago
parent afaa402b31
commit 05c8153b1a

@ -32,8 +32,12 @@ impl ExcludedItems {
continue;
}
if expression == "DEFAULT" {
// TODO add more files by default
checked_expressions.push("*/.git/*".to_string());
if cfg!(target_family = "unix") {
checked_expressions.push("*/.git/*,*/node_modules/*,*/lost+found/*,*/Trash/*,*/.Trash-*/*,*/snap/*".to_string());
}
if cfg!(target_family = "windows") {
checked_expressions.push("*/.git/*,*/node_modules/*,*/lost+found/*,*:/windows/*".to_string());
}
continue;
}
if !expression.contains('*') {

Loading…
Cancel
Save