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 2
2
just --list --unsorted
3
3
4
4
# 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
6
6
7
7
# Install Python package dependencies
8
8
install-deps :
@@ -50,3 +50,7 @@ check-commits:
50
50
# Run basic security checks on the package
51
51
check-security :
52
52
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