From 306a5f5977b712fcb6bc86e4dabd68e7c193462d Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Wed, 19 Oct 2022 21:19:13 -0700 Subject: [PATCH] Created SC1145 (markdown) --- SC1145.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 SC1145.md diff --git a/SC1145.md b/SC1145.md new file mode 100644 index 0000000..f7b63bd --- /dev/null +++ b/SC1145.md @@ -0,0 +1,27 @@ +## Unknown external-sources value. Expected true/false. + +### Problematic code: + +`.shellcheckrc`: + +```sh +external-sources=maybe +``` + +### Correct code: + +```sh +external-sources=true +``` + +### Rationale: + +The `external-sources` [[directive]] expects a value of `true` or `false`. + +### Exceptions: + +None. + +### Related resources: + +* Help by adding links to BashFAQ, StackOverflow, man pages, POSIX, etc! \ No newline at end of file