mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-10 18:05:16 +00:00
11 lines
308 B
TOML
11 lines
308 B
TOML
# Disable all rules by default
|
|
lint.ignore = ["ALL"]
|
|
|
|
# Enable specific rules
|
|
lint.select = [
|
|
"S307", # suspicious-eval-usage
|
|
"F401", # unused-import
|
|
"F841", # unused-local-variable
|
|
# TODO: Enable F821 after all errors has been fixed. Remaining errors: 7.
|
|
# "F821", # undefined-name
|
|
] |