Files
godot-docs/pyproject.toml
2026-08-08 00:21:14 +02:00

35 lines
946 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 = [
"_build/*",
"_static/*",
"_styleguides/*",
"classes/*",
".github/*",
"tutorials/i18n/locales.rst",
"AUTHORS.md",
"LICENSE.txt",
]
ignore-words-list = [
"dialogue", # Common even in US spelling.
"doubleclick",
"findn", # Our case-insensitive `find` function.
"implementors",
"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".
"writeable", # Part of a Python error message.
]
ignore-multiline-regex = "codespell:ignore-begin.*?codespell:ignore-end"