Add simple bash script for applying linting rules

1. pre-commit failed to install somehow
2. I detest pre commit hooks that are slow.
This commit is contained in:
Tim Kächele 2025-04-21 23:33:21 +02:00
parent d427d0a184
commit 256abc6222

6
lint.sh Normal file
View File

@ -0,0 +1,6 @@
echo "isort"
isort . --profile=black
echo "Black"
black .
echo "autoflake"
autoflake . --remove-all-unused-imports --recursive --in-place