We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9874b7c commit 3596881Copy full SHA for 3596881
2 files changed
.gitignore
@@ -118,3 +118,6 @@ latex_testing.qmd
118
latex_testing.pdf
119
latex_examples.qmd
120
latex_examples.pdf
121
+
122
+# Do not track lockfile in package/lib setting
123
+uv.lock
Makefile
@@ -17,6 +17,14 @@ check:
17
18
clean: clean-build clean-pyc clean-test ## remove all build, test, coverage and Python artifacts
19
20
+.PHONY: install-pre-commit
21
+install-pre-commit: # Install pre-commit hooks
22
+ @uvx pre-commit install
23
24
+.PHONY: run-pre-commit
25
+run-pre-commit: # Run pre-commit hooks
26
+ @uvx pre-commit run --all-files
27
28
clean-build: ## remove build artifacts
29
rm -fr build/
30
rm -fr dist/
0 commit comments