Merge "Ignore backup files left by emacs."
This commit is contained in:
commit
8d36be9bb9
1 changed files with 3 additions and 0 deletions
|
@ -38,6 +38,9 @@ def is_interesting(path_str: str) -> bool:
|
|||
return False
|
||||
if path.name in {"notice", "readme", "pylintrc"}:
|
||||
return False
|
||||
# Backup files for some editors.
|
||||
if path.match("*~"):
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue