WebUI/pyproject.toml

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

36 lines
763 B
TOML
Raw Permalink Normal View History

2023-05-10 04:43:55 +00:00
[tool.ruff]
2023-05-10 08:00:07 +00:00
target-version = "py39"
extend-select = [
"B",
"C",
"I",
"W",
2023-05-10 08:00:07 +00:00
]
2023-05-10 06:02:23 +00:00
2023-05-10 06:09:41 +00:00
exclude = [
"extensions",
"extensions-disabled",
]
2023-05-10 05:43:42 +00:00
2023-05-10 04:43:55 +00:00
ignore = [
2023-05-10 06:02:23 +00:00
"E501", # Line too long
"E731", # Do not assign a `lambda` expression, use a `def`
2023-05-10 08:00:07 +00: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-10 04:43:55 +00:00
]
2023-05-10 05:43:42 +00:00
[tool.ruff.per-file-ignores]
2023-05-10 06:02:23 +00:00
"webui.py" = ["E402"] # Module level import not at top of file
2023-05-10 08:19:16 +00: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"]
2023-05-11 18:57:43 +00:00
[tool.pytest.ini_options]
base_url = "http://127.0.0.1:7860"