blob: 0ac34f05d85d7672e99419ffe873c8cfd0122d96 (
plain)
1
2
3
4
5
6
7
|
# Project shellcheck configuration.
#
# Disable the "can't follow sourced file" infos. They are not actionable here:
# - rsyncshot sources /etc/rsyncshot/config, which doesn't exist at lint time.
# - the test suite sources lib/test_helpers.sh via a runtime-computed path.
# Both are correct at runtime; shellcheck simply can't resolve them statically.
disable=SC1090,SC1091
|