From 02fec129fcb5a71d5453ed96790678f996aef0d3 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 8 Dec 2016 20:03:18 +1100 Subject: [PATCH] Created Shellcheck Exclusions (markdown) --- Shellcheck-Exclusions.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Shellcheck-Exclusions.md diff --git a/Shellcheck-Exclusions.md b/Shellcheck-Exclusions.md new file mode 100644 index 0000000..7cc2909 --- /dev/null +++ b/Shellcheck-Exclusions.md @@ -0,0 +1,24 @@ +This wiki page lists all of the [shellcheck](https://www.shellcheck.net/) errors that we're ignoring when testing Neofetch. + + +### [SC1090](https://github.com/koalaman/shellcheck/wiki/SC1090) + +> Can't follow non-constant source. Use a directive to specify location. + +This error has been disabled since we're not sourcing the config file when running shellcheck. + + +### [SC2009](https://github.com/koalaman/shellcheck/wiki/SC2009) + +> SC2009 Consider using pgrep instead of grepping ps output. + +We were originally using `pgrep` until we found out that `pgrep` has some issues on macOS systems. + + +### [SC2034](https://github.com/koalaman/shellcheck/wiki/SC2034) + +> foo appears unused. Verify it or export it. + +This error has been disabled since we dynamically use the info variables. (`$kernel`) + +