mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-29 12:13:52 +00:00
* Add build/include_what_you_use to cpplint checks * Fix all cpplint build/include_what_you_use issues
15 lines
679 B
INI
15 lines
679 B
INI
set noparent
|
|
linelength=120 # As in .clang-format
|
|
|
|
# Non-used filters
|
|
filter=-build/include_order # Requires unusual include order that encourages creating not self-contained headers
|
|
filter=-readability/nolint # Conficts 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/parens,-whitespace/braces # Conflict with clang-format
|
|
|
|
# Filters to be included in future
|
|
filter=-whitespace/indent,-whitespace/comments,-readability/braces
|
|
filter=-legal/copyright # Remove this line after Version 1.9
|
|
|