From e4957e79af60a2902c2fce59d9035cc11af933b4 Mon Sep 17 00:00:00 2001 From: gsheni Date: Mon, 25 Mar 2024 15:48:28 -0400 Subject: [PATCH] remove unused make lint commands --- Makefile | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 1ae4df3..508726f 100644 --- a/Makefile +++ b/Makefile @@ -79,21 +79,13 @@ install-develop: clean-build clean-pyc ## install the package in editable mode a # LINT TARGETS -.PHONY: lint-deepecho -lint-deepecho: ## check style with flake8 and isort - -.PHONY: lint-tests -lint-tests: ## check style with flake8 and isort - flake8 --ignore=D tests - isort -c --recursive tests - .PHONY: lint -lint: ## Run all code style checks +lint: ruff check . ruff format . --check .PHONY: fix-lint -fix-lint: ## fix lint issues using ruff +fix-lint: ruff check --fix . ruff format .