feat(gui): Migrate _render_shader_live_editor to imgui_window scope

This commit is contained in:
2026-05-11 23:11:56 -04:00
parent af1e484d0c
commit f1ca3751c8
4 changed files with 19 additions and 18 deletions
+5 -3
View File
@@ -52,19 +52,21 @@ exclude = [
]
[tool.ruff.lint]
# Enable McCabe complexity check for nesting depth enforcement
select = ["E", "F", "W", "C90", "C4"]
# Enable standard rules
select = ["E", "F", "W"]
# Ignore style choices that conflict with project's compact style
ignore = [
"E701", # Multiple statements on one line (colon)
"E702", # Multiple statements on one line (semicolon)
"E402", # Module level import not at top of file
"E722", # Do not use bare `except`
"E501", # Line too long
"W291", # Trailing whitespace
"W293", # Blank line contains whitespace
]
[tool.ruff.lint.mccabe]
max-complexity = 5