Tim Kächele 256abc6222 Add simple bash script for applying linting rules
1. pre-commit failed to install somehow
2. I detest pre commit hooks that are slow.
2025-04-22 11:58:58 +02:00

7 lines
138 B
Bash

echo "isort"
isort . --profile=black
echo "Black"
black .
echo "autoflake"
autoflake . --remove-all-unused-imports --recursive --in-place