Skip to content

Commit cdab429

Browse files
committed
Added make commands for format and lint
1 parent 916386a commit cdab429

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ check: ## Run code quality tools.
1313
@echo "🚀 Static type checking: Running mypy"
1414
@uv run mypy
1515

16+
.PHONY: format
17+
format: ## Perform ruff formatting
18+
@uv run ruff format
19+
20+
.PHONY: lint
21+
lint: ## Perform ruff linting
22+
@uv run ruff check --fix
23+
1624
.PHONY: test
1725
test: ## Test the code with pytest.
1826
@echo "🚀 Testing code: Running pytest"

0 commit comments

Comments
 (0)