ignore more binary files

This commit is contained in:
Doug Hellmann 2014-11-12 14:04:35 +00:00
parent 9ce8cd0725
commit ef53551c45
1 changed files with 3 additions and 2 deletions

View File

@ -41,13 +41,14 @@ class ProjectManager(object):
_DO_NOT_READ = [
'*.doc', '*.docx', '*.graffle', '*.odp', '*.pptx', '*.vsd', '*.xsd',
'*.gif', '*.ico', '*.jpeg', '*.jpg', '*.png', '*.ttf',
'*.gif', '*.ico', '*.jpeg', '*.jpg', '*.png', '*.tiff',
'*.gpg',
'*.jar', # Why do we check in jar files?!
'*.swf', '*.eot',
'*.woff', # webfont; horizon
'*.ttf', '*.woff', # webfont; horizon
'*.xml',
'*.gz', '*.zip', '*.z',
'*.mo', '*.db',
]
def __init__(self, session):