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 a4fe454 commit 7f9865fCopy full SHA for 7f9865f
justfile
@@ -4,6 +4,15 @@
4
# Run all build-related recipes in the justfile
5
run-all: install-deps format-python check-python check-spelling check-commits
6
7
+# Install the pre-commit hooks
8
+install-precommit:
9
+ # Install pre-commit hooks
10
+ uvx pre-commit install
11
+ # Run pre-commit hooks on all files
12
+ uvx pre-commit run --all-files
13
+ # Update versions of pre-commit hooks
14
+ uvx pre-commit autoupdate
15
+
16
# Install Python package dependencies
17
install-deps:
18
uv sync --upgrade --dev --all-extras
0 commit comments