Skip to content

Commit

Permalink
chore(mise.toml): ignore check-extra-masked-returns of shellcheck in …
Browse files Browse the repository at this point in the history
…actionlint
  • Loading branch information
risu729 committed Nov 8, 2024
1 parent 83f791e commit 73ff676
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,10 @@ alias = "check:jsonschema"
[tasks."lint:actionlint"]
run = "actionlint -color"
alias = "check:actionlint"
env = { "SHELLCHECK_OPTS" = "--enable=all" }
# SC2312: check-extra-masked-returns
# pipefail is set by shell: bash in GitHub Actions but cannot be detected by shellcheck
# ref: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#defaultsrunshell
env = { "SHELLCHECK_OPTS" = "--enable=all --exclude=SC2312" }

[tasks."lint:ghalint"]
run = "ghalint run"
Expand Down

0 comments on commit 73ff676

Please sign in to comment.