From 9a216515accf3caf5cde4ed213381a417d4d7560 Mon Sep 17 00:00:00 2001 From: "erik.corry@gmail.com" Date: Sat, 6 Sep 2008 06:22:59 +0000 Subject: [PATCH] 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 --- tools/presubmit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/presubmit.py b/tools/presubmit.py index 32b78d98d..27023ce5b 100755 --- a/tools/presubmit.py +++ b/tools/presubmit.py @@ -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('.') -- 2.34.1