mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-28 19:53:52 +00:00
* Add cpplint config file * Add cpplint to CI * Add checks * Add docker container tag * Unindent container As suggested in code review Co-Authored-By: Henry Schreiner <HenrySchreinerIII@gmail.com> * Fix cpplint issues * Fix clang-format * Include and fix modern cpplint runtime/int * Include and fix cpplint build/include_order * Revert "Include and fix cpplint build/include_order" This reverts commit bddb6a2d6744c5397f387ccd03416a1ec5e29862. * Update explanation, sort alphabetically * Implement suggestion from code review Co-Authored-By: Henry Schreiner <HenrySchreinerIII@gmail.com> * Include cstdint header, prefix its symbols with std:: * Forgot std:: Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
15 lines
707 B
INI
15 lines
707 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,-build/include_what_you_use
|
|
filter=-legal/copyright # Remove this line after Version 1.9
|
|
|