2018-11-28 17:43:18 -03:00
|
|
|
#!/usr/bin/env bash
|
2018-10-04 17:54:07 -03:00
|
|
|
#
|
|
|
|
# Copyright (c) 2018 The Bitcoin Core developers
|
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#
|
|
|
|
# Find dead Python code.
|
|
|
|
|
|
|
|
export LC_ALL=C
|
|
|
|
|
|
|
|
if ! command -v vulture > /dev/null; then
|
|
|
|
echo "Skipping Python dead code linting since vulture is not installed. Install by running \"pip3 install vulture\""
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2019-09-19 18:13:26 -03:00
|
|
|
VULTURE_SUPPRESSIONS=$(dirname "${BASH_SOURCE[0]}")/lint-python-dead-code-whitelist
|
|
|
|
if ! vulture \
|
2018-10-04 17:54:07 -03:00
|
|
|
--min-confidence 60 \
|
2019-07-25 18:15:41 -04:00
|
|
|
$(git rev-parse --show-toplevel) \
|
2019-09-19 18:13:26 -03:00
|
|
|
"${VULTURE_SUPPRESSIONS}"; then
|
|
|
|
echo "False positives? Suppressions can be added to ${VULTURE_SUPPRESSIONS}"
|
|
|
|
exit 1
|
|
|
|
fi
|