pwndbg/lint.sh

89 lines
2.0 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2022-09-05 19:18:40 +08:00
set -o errexit
help_and_exit() {
echo "Usage: ./lint.sh [-f|--fix]"
echo " -f, --fix fix issues if possible"
exit 1
}
if [[ $# -gt 1 ]]; then
help_and_exit
fi
FIX=0
while [[ $# -gt 0 ]]; do
case $1 in
-f | --fix)
FIX=1
shift
;;
*)
help_and_exit
;;
esac
done
2023-08-06 22:37:56 +08:00
# Use Python virtual env for all programs used here
if [[ -z "${PWNDBG_VENV_PATH}" ]]; then
PWNDBG_VENV_PATH="./.venv"
fi
if [[ "${PWNDBG_VENV_PATH}" != "PWNDBG_PLEASE_SKIP_VENV" ]]; then
source "${PWNDBG_VENV_PATH}/bin/activate"
fi
2023-08-06 22:37:56 +08:00
2024-02-26 07:02:50 +08:00
set -o xtrace
LINT_FILES="pwndbg tests *.py"
LINT_TOOLS="isort ruff vermin mypy"
if ! type ${LINT_TOOLS} &> /dev/null; then
PIP_CMD="poetry install --with dev"
echo "Missing one of the following tools: ${LINT_TOOLS}"
echo "Running '${PIP_CMD}'"
$PIP_CMD
fi
2023-08-06 22:37:56 +08:00
call_shfmt() {
2024-02-25 08:43:28 +08:00
local FLAGS=$1
2023-08-06 22:37:56 +08:00
if [ -x "$(command -v shfmt)" ]; then
2024-02-25 08:43:28 +08:00
local SHFMT_FILES=$(find . -name "*.sh" -not -path "./.venv/*")
2023-08-06 22:37:56 +08:00
# Indents are four spaces, binary ops can start a line, indent switch cases,
# and allow spaces following a redirect
2024-02-26 07:02:50 +08:00
shfmt ${FLAGS} -i 4 -bn -ci -sr -d ${SHFMT_FILES}
2023-08-06 22:37:56 +08:00
else
echo "shfmt not installed, skipping"
fi
}
if [[ $FIX == 1 ]]; then
isort ${LINT_FILES}
ruff format ${LINT_FILES}
ruff check --fix --output-format=full ${LINT_FILES}
2023-08-06 22:37:56 +08:00
call_shfmt -w
else
isort --check-only --diff ${LINT_FILES}
ruff format --check --diff ${LINT_FILES}
2023-08-06 22:37:56 +08:00
call_shfmt
if [[ -z "$GITHUB_ACTIONS" ]]; then
RUFF_OUTPUT_FORMAT=full
else
RUFF_OUTPUT_FORMAT=github
fi
ruff check --output-format="${RUFF_OUTPUT_FORMAT}" ${LINT_FILES}
fi
2022-10-22 17:15:44 +08:00
# Checking minimum python version
vermin -vvv --no-tips -t=3.10- --eval-annotations --violations ${LINT_FILES}
# mypy is run in a separate step on GitHub Actions
if [[ -z "$GITHUB_ACTIONS" ]]; then
mypy pwndbg gdbinit.py lldbinit.py pwndbg-lldb.py
fi