Commit 9a216515 authored by erik.corry@gmail.com's avatar erik.corry@gmail.com

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
parent e31170a1
......@@ -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('.')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment