From f1f3cad2f21ff573ef1f041cfc42ffd4566bd12d Mon Sep 17 00:00:00 2001 From: DavidVadnais Date: Sat, 22 Mar 2025 15:28:43 -1000 Subject: [PATCH] migrate makefile from flake8 and autopep8 to ruff --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index f34a0de5..bf1d87e9 100644 --- a/Makefile +++ b/Makefile @@ -63,15 +63,13 @@ test: #: format - Run the PEP8 formatter. .PHONY: format format: - autopep8 --exit-code --global-config .flake8 helpdesk - isort --line-length=120 --src helpdesk . + ruff format helpdesk #: checkformat - checks formatting against configured format specifications for the project. .PHONY: checkformat checkformat: - flake8 helpdesk --count --show-source --statistics --exit-zero --max-complexity=20 - isort --line-length=120 --src helpdesk . --check + ruff check helpdesk #: documentation - Build documentation (Sphinx, README, ...).