ComfyUI/ruff.toml
Alexander Piskun f4e86a4a07
applied RUFF RET504 rule (unnecessary assignment before return statement)
Signed-off-by: bigcat88 <bigcat88@icloud.com>
2025-01-01 12:45:55 +02:00

16 lines
407 B
TOML

# Disable all rules by default
lint.ignore = ["ALL"]
# Enable specific rules
lint.select = [
"S307", # suspicious-eval-usage
"T201", # print-usage
"W",
# The "F" series in Ruff stands for "Pyflakes" rules, which catch various Python syntax errors and undefined names.
# See all rules here: https://docs.astral.sh/ruff/rules/#pyflakes-f
"F",
"RET504",
]
exclude = ["*.ipynb"]