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