File: shellcheck-excludes.txt

package info (click to toggle)
ccache 4.13.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,420 kB
  • sloc: cpp: 50,251; asm: 28,570; sh: 9,632; ansic: 5,357; python: 834; perl: 68; makefile: 24
file content (8 lines) | stat: -rw-r--r-- 513 bytes parent folder | download | duplicates (5)
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.