forked from PrincetonUniversity/athena
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCPPLINT.cfg
More file actions
18 lines (17 loc) · 675 Bytes
/
CPPLINT.cfg
File metadata and controls
18 lines (17 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Don't search for additional CPPLINT.cfg in parent directories.
set noparent
headers=hpp
linelength=90
# Don't use 'SRC_' as the cpp header guard prefix
root=./src/
extensions=hpp,cpp
# exclude_files=defs.hpp # does not work for files in subidirectories
# Disable and enable specific categories (filters evaluate from left to right)
filter=+build/include_alpha # (only category that is disabled by default)
# As of 2018-12-12:
filter=-readability/fn_size # 3 errors
filter=-runtime/references # 772 errors
filter=-whitespace/comma # 6027 errors
filter=-whitespace/comments # 881 errors
filter=-whitespace/operators # 5240 errors
filter=-whitespace/parens # 413 errors