chore: move codespell config to pyproject.toml (#2409)

* chore: move codespell config to pyproject.toml

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
Henry Schreiner
2025-05-25 13:58:13 +02:00
committed by GitHub
co-authored by pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
parent 327f5c327d
commit 1bfec0e7c9
2 changed files with 12 additions and 1 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ repos:
rev: v2.4.1
hooks:
- id: codespell
args: ["-L", "sur,assertin,hep", "-w"]
args: ["-w"]
exclude: ^docs/working-examples\.md$ # Autogenerated
+11
View File
@@ -231,3 +231,14 @@ ignore = ["PC170", "PP303"]
[tool.check-wheel-contents]
ignore = ["W002"] # constraints-*.txt are allowed to be duplicates of one another
[tool.codespell]
ignore-words-list = [
"sur",
"assertin",
]
skip = [
'^docs/working-examples\.md',
'htmlcov',
'all_known_setup.yaml',
]