We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noticed this because in the hardware repos I am using a custom static.sh based on the default template.
static.sh
The shellcheck line in the static.sh template is currently:
exe shellcheck -e SC2087 .ci/*.sh
I have other shell scripts in the hardware repos so I started using something like this to evaluate all scripts in the repo:
exe find . -type f -name '*.sh' -exec shellcheck -e SC2087 {} \;
You could also exclude specific directories:
exe find . \( -path ./dir1 -o -path ./dir2 \) -prune -o -type f -name '*.sh' -exec shellcheck -e SC2087 {} \;
Not sure if this is too esoteric or if other repos would benefit for this, but figured I'd drop it here for discussion.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I noticed this because in the hardware repos I am using a custom
static.sh
based on the default template.The shellcheck line in the
static.sh
template is currently:I have other shell scripts in the hardware repos so I started using something like this to evaluate all scripts in the repo:
You could also exclude specific directories:
Not sure if this is too esoteric or if other repos would benefit for this, but figured I'd drop it here for discussion.
The text was updated successfully, but these errors were encountered: