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`) + +