From 395d1dc923c0ef3a50082ac9382c58a1f18d8277 Mon Sep 17 00:00:00 2001 From: Ugaitz Urien Date: Thu, 17 Oct 2024 17:12:30 +0200 Subject: [PATCH] Ignore whitespace/indent_namespace cpplint rule --- .github/workflows/build.yml | 2 +- .github/workflows/pull-request.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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..250944a 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']