diff options
author | Mario Trangoni <mjtrangoni@gmail.com> | 2021-02-06 18:09:21 +0100 |
---|---|---|
committer | Mario Trangoni <mjtrangoni@gmail.com> | 2021-02-06 18:13:39 +0100 |
commit | 3dfd7a711567f90878acb1a58ee5fe3228f102b9 (patch) | |
tree | d2941f722065f3c29bc01d720a213c38429d4480 /.github/workflows | |
parent | 3da6e9c3a348cc3ffe20701e389fd2046d0d4e1d (diff) | |
download | nx-libs-3dfd7a711567f90878acb1a58ee5fe3228f102b9.tar.gz nx-libs-3dfd7a711567f90878acb1a58ee5fe3228f102b9.tar.bz2 nx-libs-3dfd7a711567f90878acb1a58ee5fe3228f102b9.zip |
linters: Enable shellcheck
This will be green after #1001 get merged.
Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/linters.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 183924dfd..c6a238fd2 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -20,7 +20,7 @@ jobs: - name: run Shellcheck run: | - find . -name "*.sh" | xargs shellcheck || true + find . -name "*.sh" | xargs shellcheck -e SC1004,SC2010,SC2035,SC2086 cppcheck: runs-on: ubuntu-20.04 |