Files
godot-docs/pyproject.toml
Hugo Locurcio d64d18a8d0 Improve codespell setup for direct usage and CI
Running `codespell` directly in a terminal at the project root now
acts identical to CI, making local runs faster and easier.

This also removes the redundant `codespell-ignore-lines.txt`
which had no effect anymore, as the original image it was referencing
was renamed or removed.

Some redundant ignore entries were also removed.
2026-06-25 03:43:05 +02:00

17 lines
312 B
TOML

[tool.ruff]
line-length = 120
[tool.codespell]
dictionary = ["_tools/codespell-dict.txt", "-"]
ignore-words = "_tools/codespell-ignore.txt"
skip = [
"_build/*",
"_static/*",
"_styleguides/*",
"classes/*",
".github/*",
"tutorials/i18n/locales.rst",
"AUTHORS.md",
"LICENSE.txt",
]