Merge "Ignore backup files left by emacs."

This commit is contained in:
Treehugger Robot 2021-04-20 01:24:49 +00:00 committed by Gerrit Code Review
commit 8d36be9bb9

View file

@ -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