ignore more binary files

This commit is contained in:
Doug Hellmann 2014-11-06 16:03:32 +01:00
parent 2e4c6cb74a
commit 74575576c5
1 changed files with 22 additions and 6 deletions

View File

@ -72,13 +72,29 @@ def _find_files_in_project(path):
_DO_NOT_READ = [
'*.png',
'*.gif',
'*.jpg',
'*.jpeg',
'*.jar', # Why do we check in jar files?!
'*.xml',
'*.doc',
'*.docx',
'*.graffle',
'*.odp',
'*.pptx',
'*.vsd',
'*.gif',
'*.ico',
'*.jpeg',
'*.jpg',
'*.png',
'*.ttf',
'*.gpg',
'*.jar', # Why do we check in jar files?!
'*.woff', # webfont; horizon
'*.xml',
'*.zip',
]