From e5e3dc6a786314c4e292dccb482e4d520f25d08d Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Sun, 17 Nov 2013 18:53:16 -0500 Subject: [PATCH] Ignore .mm files for cpplint It doesn't process them anyway. --- brightray/script/cpplint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brightray/script/cpplint b/brightray/script/cpplint index 051370dac172..d6e5ebcf9f23 100755 --- a/brightray/script/cpplint +++ b/brightray/script/cpplint @@ -13,7 +13,7 @@ CPPLINT = os.path.join(SOURCE_ROOT, 'vendor', 'google-styleguide', 'trunk', 'cpp def main(): os.chdir(SOURCE_ROOT) files = list_files(['browser', 'common'], - ['*.cc', '*.mm', '*.h']) + ['*.cc', '*.h']) return cpplint(files)