From 94f00b7d272932ba8f16e6b3ec485eefe900bc70 Mon Sep 17 00:00:00 2001 From: Saurav Maheshkar Date: Tue, 28 Feb 2023 10:46:07 +0000 Subject: [PATCH] chore: update Makefile with ruff commands --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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