summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJeff Donahue <jeff.donahue@gmail.com>2014-02-25 12:00:41 -0800
committerEvan Shelhamer <shelhamer@imaginarynumber.net>2014-02-26 15:42:38 -0800
commitdd7854c52f4ded7f8c7f7f2debf7186e7102a14f (patch)
tree41be5523c28d490d283c34681b035529bf0e6949 /scripts
parentba95a87e11938d06b243a1de2dd5b89cb3298613 (diff)
downloadcaffeonacl-dd7854c52f4ded7f8c7f7f2debf7186e7102a14f.tar.gz
caffeonacl-dd7854c52f4ded7f8c7f7f2debf7186e7102a14f.tar.bz2
caffeonacl-dd7854c52f4ded7f8c7f7f2debf7186e7102a14f.zip
suppress linter errors due to not including the directory when naming .h
files
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/cpplint.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/cpplint.py b/scripts/cpplint.py
index 76d07352..52eb2230 100755
--- a/scripts/cpplint.py
+++ b/scripts/cpplint.py
@@ -148,6 +148,7 @@ _ERROR_CATEGORIES = [
'build/header_guard',
'build/include',
'build/include_alpha',
+ 'build/include_dir',
'build/include_order',
'build/include_what_you_use',
'build/namespaces',
@@ -207,7 +208,7 @@ _ERROR_CATEGORIES = [
# flag. By default all errors are on, so only add here categories that should be
# off by default (i.e., categories that must be enabled by the --filter= flags).
# All entries here should start with a '-' or '+', as in the --filter= flag.
-_DEFAULT_FILTERS = ['-build/include_alpha']
+_DEFAULT_FILTERS = ['-build/include_alpha', '-build/include_dir']
# We used to check for high-bit characters, but after much discussion we
# decided those were OK, as long as they were in UTF-8 and didn't represent
@@ -3585,7 +3586,7 @@ def CheckIncludeLine(filename, clean_lines, linenum, include_state, error):
# "include" should use the new style "foo/bar.h" instead of just "bar.h"
if _RE_PATTERN_INCLUDE_NEW_STYLE.search(line):
- error(filename, linenum, 'build/include', 4,
+ error(filename, linenum, 'build/include_dir', 4,
'Include the directory when naming .h files')
# we shouldn't include a file more than once. actually, there are a