Remove /.* ignore pattern (see #45)

This commit is contained in:
Matt Green 2017-04-25 16:48:44 -04:00
parent d64ced0250
commit fe0d5243bd
1 changed files with 1 additions and 2 deletions

View File

@ -135,8 +135,7 @@ pub fn get_args() -> Args {
}
let mut ignores = vec![];
let default_ignores = vec![format!("*{}.*{}*", MAIN_SEPARATOR, MAIN_SEPARATOR),
format!("*{}.DS_Store", MAIN_SEPARATOR),
let default_ignores = vec![format!("*{}.DS_Store", MAIN_SEPARATOR),
String::from("*.pyc"),
String::from("*.swp")];