ComfyUI/ruff.toml

8 lines
161 B
TOML
Raw Normal View History

2024-12-10 03:04:23 +00:00
# Disable all rules by default
lint.ignore = ["ALL"]
# Enable specific rules
lint.select = [
"S307", # suspicious-eval-usage
"F401", # unused-import
]