mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-09-03 18:14:53 +03:00
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.
17 lines
312 B
TOML
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",
|
|
]
|