Files
neon/scripts/reformat
vipvap aa72a22661 Release 2024-01-08 (#6286)
Release 2024-01-08
2024-01-08 09:26:27 +00:00

11 lines
268 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 ruff check --fix test_runner scripts
poetry run ruff format test_runner scripts