-
Notifications
You must be signed in to change notification settings - Fork 7
/
CPPLINT.cfg
23 lines (18 loc) · 907 Bytes
/
CPPLINT.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Stop searching for additional config files.
set noparent
# Disable a warning about C++ features that were not in the original
# C++11 specification (and so might not be well-supported). In the
# case of Drake, our supported minimum platforms are new enough that
# this warning is irrelevant.
filter=-build/c++11
# We do not care about the whitespace details of a TODO comment. It is not
# relevant for easy grepping, and the GSG does not specify any particular
# whitespace style. (We *do* care what the "TODO(username)" itself looks like
# because GSG forces a particular style there, but that formatting is covered
# by the readability/todo rule, which we leave enabled.)
filter=-whitespace/todo
filter=-legal/copyright
# It's not worth lint-gardening the documentation.
exclude_files=docs
# https://drake.mit.edu/styleguide/cppguide.html#Include_What_You_Use
filter=-build/include_what_you_use