Skip to content

Commit b7f22b8

Browse files
committed
🔨 Refactor 'check' task and update 'format' with import sort
1 parent aecd709 commit b7f22b8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

‎project_name/justfile.jinja‎

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ prepare:
2323

2424
# Run all code quality checks and tests
2525
check:
26-
# pre-commit includes everything except mypy and pytest
26+
@just format
27+
@just lint
28+
@just test
2729
uv run pre-commit run --all-files
28-
uv run mypy
29-
uv run pytest
3030

3131
format:
32+
uv run ruff check --select I001 --fix
3233
{%- if format_tool == "black" %}
3334
uv run black .
3435
{%- elif format_tool == "ruff" %}

0 commit comments

Comments
 (0)