Add isort and ruff as dev dependencies;

 remove `flake8` dependency (replaced by `ruff`);
change `lint.sh` script to use `isort`, `ruff`, and `black`
This commit is contained in:
2023-03-10 16:57:26 +01:00
parent f3087bfe66
commit 692e5ef4c4
7 changed files with 47 additions and 13 deletions

View File

@ -12,5 +12,7 @@ mypy
echo
echo 'Linting source and test files...'
flake8 src/ tests/
isort src/ tests/ --check-only
ruff src/ tests/
black src/ tests/ --check
echo -e 'No issues found.'