-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathCPPLINT.cfg
More file actions
13 lines (12 loc) · 810 Bytes
/
CPPLINT.cfg
File metadata and controls
13 lines (12 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
set noparent
linelength=100 # As in .clang-format
# Non-used filters
filter=-build/include_order # Requires unusual include order that encourages creating not self-contained headers
filter=-build/include_subdir # this is generally good but causes some issues
filter=-readability/nolint # Conflicts with clang-tidy
filter=-runtime/references # Requires fundamental change of API, don't see need for this
filter=-whitespace/blank_line # Unnecessarily strict with blank lines that otherwise help with readability
filter=-whitespace/indent # Requires strange 3-space indent of private/protected/public markers
filter=-whitespace/parens,-whitespace/braces # Conflict with clang-format
filter=-runtime/indentation_namespace #conflicts with clang format
filter=-runtime/explicit #issues caught by clang-tidy