Bump to ccache 4.4
[platform/upstream/ccache.git] / misc / shellcheck-excludes.txt
1 SC2148: Tips depend on target shell and yours is unknown. Add a shebang.
2 #  the below excludes are (mostly) about bourne shell and style issues
3 SC2001: See if you can use ${variable//search/replace} instead.
4 SC2006: Use $(..) instead of legacy `..`.
5 SC2046: Quote this to prevent word splitting.
6 SC2086: Double quote to prevent globbing and word splitting.
7 SC2103: Consider using ( subshell ), 'cd foo||exit', or pushd/popd instead.
8 SC2129: Consider using { cmd1; cmd2; } >> file instead of individual redirects.