stable-diffusion-webui/pyproject.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
841 B
TOML
Raw Permalink Normal View History

2023-05-09 22:43:55 -06:00
[tool.ruff]
2023-05-10 02:00:07 -06:00
target-version = "py39"
2024-03-17 02:12:37 -06:00
[tool.ruff.lint]
2023-05-10 02:00:07 -06:00
extend-select = [
"B",
"C",
"I",
"W",
2023-05-10 02:00:07 -06:00
]
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
2023-11-22 09:01:34 -07:00
"E721", # Do not compare types, use `isinstance`
2023-05-10 00:02:23 -06:00
"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
"W605", # invalid escape sequence, messes with some docstrings
2023-05-09 22:43:55 -06:00
]
2024-03-17 02:12:37 -06:00
[tool.ruff.lint.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
2024-03-17 02:12:37 -06:00
[tool.ruff.lint.flake8-bugbear]
2023-05-10 02:19:16 -06:00
# Allow default arguments like, e.g., `data: List[str] = fastapi.Query(None)`.
extend-immutable-calls = ["fastapi.Depends", "fastapi.security.HTTPBasic"]
2023-05-11 12:57:43 -06:00
[tool.pytest.ini_options]
base_url = "http://127.0.0.1:7860"