Files
neon/scripts/reformat
2022-10-09 08:21:11 +03:00

12 lines
265 B
Bash
Executable File

#!/usr/bin/env bash
set -euox pipefail
# Runs all formatting tools to ensure the project is up to date
echo 'Reformatting Rust code'
cargo fmt
echo 'Reformatting Python code'
poetry run isort test_runner
poetry run flake8 test_runner
poetry run black test_runner