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-11 09:28:15 -06:00
|
|
|
"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
|
|
|
|
"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-11 09:28:15 -06:00
|
|
|
"W605", # invalid escape sequence, messes with some docstrings
|
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)`.
|
2023-05-11 09:28:15 -06:00
|
|
|
extend-immutable-calls = ["fastapi.Depends", "fastapi.security.HTTPBasic"]
|