mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 07:53:26 +00:00
SCons: Add unobtrusive type hints in SCons files
This commit is contained in:
parent
0a9d8f04c1
commit
9f9ee0c813
173 changed files with 290 additions and 6 deletions
|
@ -26,7 +26,19 @@ extend-select = [
|
|||
[tool.ruff.lint.per-file-ignores]
|
||||
"{SConstruct,SCsub}" = [
|
||||
"E402", # Module level import not at top of file
|
||||
"F821", # Undefined name
|
||||
"F403", # Undefined local with import star
|
||||
"F405", # Undefined local with import star usage
|
||||
]
|
||||
|
||||
[tool.ruff.lint.isort]
|
||||
sections = { metadata = ["misc.utility.scons_hints"] }
|
||||
section-order = [
|
||||
"future",
|
||||
"metadata",
|
||||
"standard-library",
|
||||
"third-party",
|
||||
"first-party",
|
||||
"local-folder",
|
||||
]
|
||||
|
||||
[tool.codespell]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue