stable-diffusion-webui/pyproject.toml

31 lines
630 B
TOML
Raw Normal View History

2023-05-09 22:43:55 -06:00
[tool.ruff]
2023-05-10 02:00:07 -06:00
target-version = "py39"
extend-select = [
"B",
"C",
"I",
]
2023-05-10 00:02:23 -06:00
2023-05-10 00:09:41 -06:00
exclude = [
"extensions",
"extensions-disabled",
]
2023-05-09 23:43:42 -06:00
2023-05-09 22:43:55 -06:00
ignore = [
2023-05-10 00:02:23 -06:00
"E501", # Line too long
"E731", # Do not assign a `lambda` expression, use a `def`
2023-05-10 02:00:07 -06:00
"I001", # Import block is un-sorted or un-formatted
"C901", # Function is too complex
"C408", # Rewrite as a literal
2023-05-09 22:43:55 -06:00
]
2023-05-09 23:43:42 -06:00
[tool.ruff.per-file-ignores]
2023-05-10 00:02:23 -06:00
"webui.py" = ["E402"] # Module level import not at top of file
2023-05-10 02:19:16 -06:00
[tool.ruff.flake8-bugbear]
# Allow default arguments like, e.g., `data: List[str] = fastapi.Query(None)`.
extend-immutable-calls = ["fastapi.Depends", "fastapi.security.HTTPBasic"]