Skip to content

Commit c887875

Browse files
committed
Better documented justfile
1 parent 8938e64 commit c887875

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

justfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
1+
[private]
12
default:
23
@just --list
34

5+
# Run unit tests
46
test:
57
@poetry run python -m pytest
68

9+
# Lint code using ruff
710
lint:
811
@poetry run python -m ruff check optional tests
912

13+
# Format code using ruff
1014
format:
1115
@poetry run python -m ruff format optional tests
1216

17+
# Check types using mypy
1318
typecheck:
1419
@poetry run python -m mypy optional tests
1520

21+
# Check for editorconfig violations using editorconfig-checker
1622
editorconfig:
1723
@editorconfig-checker

0 commit comments

Comments
 (0)