diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7cbc44a..9a9f0fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -173,7 +173,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v3 - run: pip install cpplint - - run: cpplint --filter=-build/include_subdir --linelength=120 --recursive ./src + - run: cpplint --filter=-build/include_subdir,-whitespace/indent_namespace --linelength=120 --recursive ./src js-lint: needs: ['check-licenses'] diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 5efb9e9..f1d03f7 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -109,7 +109,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v3 - run: pip install cpplint - - run: cpplint --filter=-build/include_subdir --linelength=120 --recursive ./src + - run: cpplint --filter=-build/include_subdir,-whitespace/indent_namespace --linelength=120 --recursive ./src js-lint: needs: ['check-licenses']