Skip to content

Commit 256687f

Browse files
committed
🚀 Add lint-autoupdate task and update README
1 parent 5b9c234 commit 256687f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ Available recipes:
114114
console # Open interactive bash console in utility container
115115
down *ARGS # Stop and remove containers, networks
116116
lint *ARGS # Run pre-commit hooks on all files
117-
lock *ARGS # Compile requirements.in to requirements.txt
117+
lint-autoupdate *ARGS # Update pre-commit hooks to latest versions
118+
lock *ARGS # Lock dependencies with uv
118119
logs *ARGS # Show logs from containers
119120
manage *ARGS # Run Django management commands
120121
pg_dump file='db.dump' # Dump database to file

justfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,11 @@ bootstrap *ARGS:
6060
@lint *ARGS:
6161
uv --quiet tool run prek {{ ARGS }} --all-files
6262

63+
# Update pre-commit hooks to latest versions
6364
@lint-autoupdate *ARGS:
6465
uv --quiet tool run prek autoupdate
6566

66-
# Compile requirements.in to requirements.txt
67+
# Lock dependencies with uv
6768
@lock *ARGS:
6869
uv lock {{ ARGS }}
6970

0 commit comments

Comments
 (0)