forked from toriato/stable-diffusion-webui-wd14-tagger
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Roel Kluin
committed
Jul 20, 2023
1 parent
332833b
commit 94f830d
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |