mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-10 18:05:16 +00:00
16 lines
409 B
TOML
16 lines
409 B
TOML
# Disable all rules by default
|
|
lint.ignore = ["ALL"]
|
|
|
|
# Enable specific rules
|
|
lint.select = [
|
|
"S307", # suspicious-eval-usage
|
|
"S102", # exec
|
|
"T", # 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",
|
|
]
|
|
|
|
exclude = ["*.ipynb"]
|