Skip to content

Commit

Permalink
remove unused make lint commands
Browse files Browse the repository at this point in the history
  • Loading branch information
gsheni committed Mar 25, 2024
1 parent e0b7ef2 commit e4957e7
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .

Expand Down

0 comments on commit e4957e7

Please sign in to comment.