Would it be possible to implement loading of multiple files? That way shellcheck can follow files sourced in scripts.
For example with this script
#! /bin/bash
# Import config file
. script.conf
# ... snip ...
I get the following output
Line 4:
. script.conf
^-- SC1091: Not following: script.conf was not specified as input (see shellcheck -x).
Would it be possible to implement loading of multiple files? That way shellcheck can follow files sourced in scripts.
For example with this script
I get the following output