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 22c6561 commit 02c20d5Copy full SHA for 02c20d5
Makefile
@@ -40,7 +40,7 @@ cover: ## Executes tests cases with coverage reports
40
41
.PHONY: format
42
format: ## Formats the code using Ruff
43
- uv run ruff check ./src
+ uv run ruff format ./src ./tests
44
45
.PHONY: pre-commit
46
pre-commit: ## Runs pre-commit hooks on all files
@@ -49,11 +49,11 @@ pre-commit: ## Runs pre-commit hooks on all files
49
.PHONY: lint
50
lint: ## Applies static analysis and type checks
51
uv run ruff check ./src
52
+ uv run ruff format --check ./src
53
54
.PHONY: fix
55
fix: ## Fix lint errors
- uv run ruff check ./src ./tests --fix
56
- uv run ruff format ./src ./tests
+ uv run ruff check --fix ./src
57
58
.PHONY: help
59
help: ## Show make target documentation
0 commit comments