Commit 80d8e942c568b6dceab2d74d64a65f3e97e528e6
Committed by
GitHub
1 parent
5ecb6159
Permanently remove cpplint's whitespace/indent check (#432)
Showing
1 changed file
with
2 additions
and
1 deletions
CPPLINT.cfg
| ... | ... | @@ -6,8 +6,9 @@ filter=-build/include_order # Requires unusual include order that encourages cr |
| 6 | 6 | filter=-readability/nolint # Conflicts with clang-tidy |
| 7 | 7 | filter=-runtime/references # Requires fundamental change of API, don't see need for this |
| 8 | 8 | filter=-whitespace/blank_line # Unnecessarily strict with blank lines that otherwise help with readability |
| 9 | +filter=-whitespace/indent # Requires strange 3-space indent of private/protected/public markers | |
| 9 | 10 | filter=-whitespace/parens,-whitespace/braces # Conflict with clang-format |
| 10 | 11 | |
| 11 | 12 | # Filters to be included in future |
| 12 | -filter=-whitespace/indent,-whitespace/comments | |
| 13 | +filter=-whitespace/comments | |
| 13 | 14 | ... | ... |