File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1+ [files ]
2+ extend-exclude = [
3+ " *.json" ,
4+ " *.css" ,
5+ " .quarto/*" ,
6+ " _site/*" ,
7+ " _extensions/*" ,
8+ " .coverage-report/*"
9+ ]
Original file line number Diff line number Diff line change 22 just --list --unsorted
33
44# Run all build-related recipes in the justfile
5- run-all : install-deps format-python check-python test-python check-security check-commits build-website
5+ run-all : install-deps format-python check-python test-python check-security check-spelling check- commits build-website
66
77# Install Python package dependencies
88install-deps :
@@ -50,3 +50,7 @@ check-commits:
5050# Run basic security checks on the package
5151check-security :
5252 uv run bandit -r src/
53+
54+ # Check for spelling errors in files
55+ check-spelling :
56+ uv run typos
You can’t perform that action at this time.
0 commit comments