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