We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 916386a commit cdab429Copy full SHA for cdab429
Makefile
@@ -13,6 +13,14 @@ check: ## Run code quality tools.
13
@echo "🚀 Static type checking: Running mypy"
14
@uv run mypy
15
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
24
.PHONY: test
25
test: ## Test the code with pytest.
26
@echo "🚀 Testing code: Running pytest"
0 commit comments