From 88c7121c84ad9ef59fc8f81a8cfaed049f3c4cd0 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 27 Nov 2019 00:29:00 +0100 Subject: [PATCH] --filter --- .github/workflows/ccpp.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index b7c0baa9a..f6a71b6d3 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -7,4 +7,11 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-python@v1 - run: pip install cpplint - - run: cpplint --counting=detailed --recursive . + - run: | + cpplint --filter=-build/include_order,-build/namespaces,-legal/copyright,\ + -readability/casting,-readability/todo,-runtime/arrays,-runtime/explicit,\ + -runtime/int,-runtime/references,-runtime/threadsafe_fn,-whitespace --recursive . +# whitespace/blank_line,-whitespace/braces,-whitespace/comma,-whitespace/comments +# whitespace/empty_loop_body,-whitespace/end_of_line,-whitespace/ending_newline +# whitespace/forcolon,-whitespace/indent,-whitespace/line_length,-whitespace/newline +# whitespace/operators,-whitespace/parens,-whitespace/semicolon,-whitespace/tab --recursive .