We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 296568a commit 96f13f6Copy full SHA for 96f13f6
1 file changed
justfile
@@ -3,27 +3,30 @@ commands:
3
@just --list
4
5
# Run unit tests
6
+[group('test')]
7
test:
8
@uv run python -m pytest
9
10
# Lint source code
-[parallel]
11
+[parallel, group('dev')]
12
lint: lint-ruff lint-basedpyright
13
14
# Lint code using ruff
-[private]
15
+[private, group('dev')]
16
lint-ruff:
17
@uv run python -m ruff check src tests
18
19
# Lint code using basedpyright
20
21
lint-basedpyright:
22
@uv run python -m basedpyright src tests
23
24
# Format code using ruff
25
+[group('dev')]
26
format:
27
@uv run python -m ruff format src tests
28
29
# Check for editorconfig violations using editorconfig-checker
30
31
editorconfig:
32
@editorconfig-checker
0 commit comments