Files
godot-docs/pyproject.toml
2026-08-19 08:42:36 -05:00

30 lines
824 B
TOML

[tool.ruff]
line-length = 120
[tool.codespell]
enable-colors = true
write-changes = true
check-hidden = true
quiet-level = 3
dictionary = ["_tools/codespell-dict.txt", "-"]
builtin = ["clear", "rare", "en-GB_to_en-US"]
skip = [
"_static/css/*",
"_styleguides/*",
"classes/*",
"tutorials/i18n/locales.rst",
"AUTHORS.md",
"LICENSE.txt",
]
ignore-words-list = [
"dialogue", # Common even in US spelling.
"findn", # Our case-insensitive `find` function.
"inout", # Shader attribute.
"lod", # "Level of Detail".
"marshalled", # Common spelling in IT.
"marshalling", # Common spelling in IT.
"thirdparty", # Prefer as one word.
"uint", # "Unsigned integer".
]
ignore-multiline-regex = "codespell:ignore-begin.*?codespell:ignore-end"