mirror of
https://github.com/pstrueb/piper.git
synced 2026-04-19 06:44:50 +00:00
30 lines
588 B
Bash
Executable File
30 lines
588 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Runs formatters, linters, and type checkers on Python code.
|
|
|
|
set -eo pipefail
|
|
|
|
# Directory of *this* script
|
|
this_dir="$( cd "$( dirname "$0" )" && pwd )"
|
|
|
|
base_dir="$(realpath "${this_dir}/..")"
|
|
|
|
# Path to virtual environment
|
|
: "${venv:=${base_dir}/.venv}"
|
|
|
|
if [ -d "${venv}" ]; then
|
|
# Activate virtual environment if available
|
|
source "${venv}/bin/activate"
|
|
fi
|
|
|
|
python_files=("${base_dir}/piper")
|
|
|
|
# Format code
|
|
black "${python_files[@]}"
|
|
isort "${python_files[@]}"
|
|
|
|
# Check
|
|
flake8 "${python_files[@]}"
|
|
pylint "${python_files[@]}"
|
|
mypy "${python_files[@]}"
|