File: shellcheck-excludes.txt

package info (click to toggle)
ccache 4.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,188 kB
  • sloc: cpp: 47,282; asm: 28,570; sh: 8,674; ansic: 5,357; python: 685; perl: 68; makefile: 23
file content (8 lines) | stat: -rw-r--r-- 513 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
SC2148: Tips depend on target shell and yours is unknown. Add a shebang.
#  the below excludes are (mostly) about bourne shell and style issues
SC2001: See if you can use ${variable//search/replace} instead.
SC2006: Use $(..) instead of legacy `..`.
SC2046: Quote this to prevent word splitting.
SC2086: Double quote to prevent globbing and word splitting.
SC2103: Consider using ( subshell ), 'cd foo||exit', or pushd/popd instead.
SC2129: Consider using { cmd1; cmd2; } >> file instead of individual redirects.