Skip to content

Commit

Permalink
fix(make): use ruff to format
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <[email protected]>
  • Loading branch information
cameronraysmith committed Dec 7, 2023
1 parent f7e8840 commit cbef6ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ test-cov-xml: ## Run tests with coverage
poetry run pytest --cov-report=xml

lint: ## Run linter
poetry run black .
poetry run ruff format .
poetry run ruff --fix .

lint-check: ## Run linter in check mode
poetry run black --check .
poetry run ruff format --check .
poetry run ruff .

typecheck: ## Run typechecker
Expand Down

0 comments on commit cbef6ad

Please sign in to comment.