diff --git a/Makefile b/Makefile index 8d8148e..ff8ed42 100644 --- a/Makefile +++ b/Makefile @@ -7,13 +7,12 @@ check_dirs := src tests examples # this target runs checks on all files quality: black --check $(check_dirs) - isort --check-only $(check_dirs) - flake8 $(check_dirs) + ruff $(check_dirs) doc-builder style src tests --max_len 119 --check_only # Format source code automatically and check is there are any problems left that need manual fixing style: black $(check_dirs) - isort $(check_dirs) + ruff $(check_dirs) --fix doc-builder style src tests --max_len 119 \ No newline at end of file