From 65fcf9a26b821916a3dc5b566540925d8cea8cb2 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Wed, 30 Jul 2025 20:02:03 -0700 Subject: [PATCH] Remove pyproject.toml changes - should be done in separate PR --- pyproject.toml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4fd3acd79..244fdd232 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,8 +12,6 @@ documentation = "https://docs.comfy.org/" [tool.ruff] lint.select = [ - "E", # pycodestyle errors - "I", # isort "N805", # invalid-first-argument-name-for-method "S307", # suspicious-eval-usage "S102", # exec @@ -23,8 +21,4 @@ lint.select = [ # See all rules here: https://docs.astral.sh/ruff/rules/#pyflakes-f "F", ] -lint.ignore = ["E501"] # disable line-length checking exclude = ["*.ipynb", "**/generated/*.pyi"] - -[tool.ruff.lint.per-file-ignores] -"!comfy_extras/v3/*" = ["E", "I"] # enable these rules only for V3 nodes