mirror of
https://git.datalinker.icu/ltdrdata/ComfyUI-Manager
synced 2025-12-08 21:54:26 +08:00
* Previously, only `uv` installed inside a venv was properly handled. Now `uv` installed outside the venv is also supported. * Even if `use_uv=False`, `uv` is used as a fallback when `pip` is unavailable. * Even if `use_uv=True`, `pip` is used as a fallback when `uv` is unavailable. https://github.com/Comfy-Org/ComfyUI-Manager/issues/2125
13 lines
366 B
TOML
13 lines
366 B
TOML
# Disable all rules by default
|
|
lint.ignore = ["ALL"]
|
|
|
|
# Enable specific rules
|
|
lint.select = [
|
|
"S307", # suspicious-eval-usage
|
|
# 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", "tests"]
|