We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d9de1a commit 73af685Copy full SHA for 73af685
.github/workflows/tests.yml
@@ -212,9 +212,9 @@ jobs:
212
with:
213
ignore: vendor # We don't want to fix the code in vendored dependencies
214
env:
215
- # don't check /etc/os-release sourcing, allow useless cats to live inside our codebase, and
216
- # allow seemingly unreachable commands
217
- SHELLCHECK_OPTS: -e SC1091 -e SC2002 -e SC2317
+ # don't check /etc/os-release sourcing, allow useless cats to live inside our codebase,
+ # allow seemingly unreachable commands, and allow unused functions
+ SHELLCHECK_OPTS: -e SC1091 -e SC2002 -e SC2317 -e SC2329
218
219
- name: Do not doube trap signals inside test scripts
220
run: |
0 commit comments