disable SC 1091

see: https://www.shellcheck.net/wiki/SC1091
This commit is contained in:
Benjamin Elder 2022-10-19 12:22:44 -07:00
parent 103e6cdd3c
commit f72938f2d4

View File

@ -39,6 +39,10 @@ disabled=(
# this lint disallows non-constant source, which we use extensively without
# any known bugs
1090
# this lint warns when shellcheck cannot find a sourced file
# this wouldn't be a bad idea to warn on, but it fails on lots of path
# dependent sourcing, so just disable enforcing it
1091
# this lint prefers command -v to which, they are not the same
2230
)