This commit is contained in:
Christian Clauss 2019-11-27 00:29:00 +01:00 committed by GitHub
parent d924195016
commit 88c7121c84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 .