diff options
| -rw-r--r-- | CPPLINT.cfg | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CPPLINT.cfg b/CPPLINT.cfg index 71a5a26b0e..27feb34455 100644 --- a/CPPLINT.cfg +++ b/CPPLINT.cfg @@ -26,9 +26,15 @@ linelength=100 # Ignore the following categories of errors, as specified by the filter: # (the filter settings are concatenated together) filter=-build/c++11 +filter=-build/c++17 filter=-build/include filter=-readability/function,-readability/streams,-readability/todo filter=-runtime/printf,-runtime/references,-runtime/sizeof,-runtime/threadsafe_fn # TODO: this should be re-enabled. filter=-whitespace/line_length filter=-whitespace/braces +filter=-whitespace/indent_namespace +filter=-whitespace/newline +filter=-readability/casting +# TODO: https://github.com/cpplint/cpplint/issues/298 +filter=-readability/nolint |