mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-02-28 22:51:45 +00:00
Merge ruff.toml into pyproject.toml (#6431)
This commit is contained in:
parent
6c9bd11fa3
commit
42086af123
@ -9,3 +9,15 @@ requires-python = ">=3.9"
|
|||||||
homepage = "https://www.comfy.org/"
|
homepage = "https://www.comfy.org/"
|
||||||
repository = "https://github.com/comfyanonymous/ComfyUI"
|
repository = "https://github.com/comfyanonymous/ComfyUI"
|
||||||
documentation = "https://docs.comfy.org/"
|
documentation = "https://docs.comfy.org/"
|
||||||
|
|
||||||
|
[tool.ruff]
|
||||||
|
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"]
|
||||||
|
15
ruff.toml
15
ruff.toml
@ -1,15 +0,0 @@
|
|||||||
# 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"]
|
|
Loading…
Reference in New Issue
Block a user