From 0c13adb134ffcbed1709ba385a50e5532d77e01b Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Sun, 17 Nov 2013 17:51:49 -0500 Subject: [PATCH] Don't require all files to have a copyright/license header The LICENSE file at the root of the repository is enough. --- brightray/script/cpplint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brightray/script/cpplint b/brightray/script/cpplint index 2b2851f277..f5911be304 100755 --- a/brightray/script/cpplint +++ b/brightray/script/cpplint @@ -28,7 +28,7 @@ def list_files(directories, filters): def cpplint(files): - rules = '--filter=-build/header_guard' + rules = '--filter=-build/header_guard,-legal/copyright' return subprocess.call([sys.executable, CPPLINT, rules] + files)