SCons: Add unobtrusive type hints in SCons files

This commit is contained in:
Thaddeus Crews 2024-06-11 15:19:07 -05:00
parent 0a9d8f04c1
commit 9f9ee0c813
No known key found for this signature in database
GPG key ID: 62181B86FE9E5D84
173 changed files with 290 additions and 6 deletions

View file

@ -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]