Skip to content

Commit

Permalink
add pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Roel Kluin committed Jul 20, 2023
1 parent 332833b commit 94f830d
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[tool.ruff]

target-version = "py39"

extend-select = [
"B",
"C",
"I",
"W",
]

exclude = [
"addons",
]

ignore = [
"E501", # Line too long
"E731", # Do not assign a `lambda` expression, use a `def`

"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
]

#[tool.ruff.per-file-ignores]
#"webui.py" = ["E402"] # Module level import not at top of file

#[tool.ruff.flake8-bugbear]
# Allow default arguments like, e.g., `data: List[str] = fastapi.Query(None)`.
#extend-immutable-calls = ["fastapi.Depends", "fastapi.security.HTTPBasic"]

[tool.pytest.ini_options]
base_url = "http://127.0.0.1:7860"

[tool.pylint.'MESSAGES CONTROL']
extension-pkg-whitelist = ["pydantic"]
disable= ["C", "R", "W", "E", "I"]

0 comments on commit 94f830d

Please sign in to comment.