From 256abc62229e07a77673c32d2a8d04a75e9dce79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20K=C3=A4chele?= Date: Mon, 21 Apr 2025 23:33:21 +0200 Subject: [PATCH] Add simple bash script for applying linting rules 1. pre-commit failed to install somehow 2. I detest pre commit hooks that are slow. --- lint.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lint.sh diff --git a/lint.sh b/lint.sh new file mode 100644 index 0000000..3f4c67d --- /dev/null +++ b/lint.sh @@ -0,0 +1,6 @@ +echo "isort" +isort . --profile=black +echo "Black" +black . +echo "autoflake" +autoflake . --remove-all-unused-imports --recursive --in-place