We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c36296b commit 154cd85Copy full SHA for 154cd85
.typos.toml
@@ -0,0 +1,9 @@
1
+[files]
2
+extend-exclude = [
3
+ "*.json",
4
+ "*.css",
5
+ ".quarto/*",
6
+ "_site/*",
7
+ "_extensions/*",
8
+ ".coverage-report/*"
9
+]
justfile
@@ -2,7 +2,7 @@
just --list --unsorted
# Run all build-related recipes in the justfile
-run-all: install-deps format-python check-python test-python check-security check-commits build-website
+run-all: install-deps format-python check-python test-python check-security check-spelling check-commits build-website
# Install Python package dependencies
install-deps:
@@ -50,3 +50,7 @@ check-commits:
50
# Run basic security checks on the package
51
check-security:
52
uv run bandit -r src/
53
+
54
+# Check for spelling errors in files
55
+check-spelling:
56
+ uv run typos
0 commit comments