When the Mozilla tests are checked out of cvs in the recommended place the

linter attempts to check them for style issues.  This is not helpful.  This
chance makes the presubmit linter skip the data directory where they are
located.


git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@182 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
erik.corry@gmail.com 2008-09-06 06:22:59 +00:00
parent e31170a11d
commit 9a216515ac

View File

@ -105,7 +105,7 @@ class SourceFileProcessor(object):
return True
def IgnoreDir(self, name):
return name.startswith('.')
return name.startswith('.') or name == 'data'
def IgnoreFile(self, name):
return name.startswith('.')