ComfyUI/ruff.toml
2024-12-12 18:55:26 -05:00

11 lines
308 B
TOML

# Disable all rules by default
lint.ignore = ["ALL"]
# Enable specific rules
lint.select = [
"S307", # suspicious-eval-usage
"F401", # unused-import
"F841", # unused-local-variable
# TODO: Enable F821 after all errors has been fixed. Remaining errors: 7.
# "F821", # undefined-name
]