mirror of
https://github.com/ManiMatter/decluttarr.git
synced 2026-04-27 19:25:41 +02:00
Code Rewrite to support multi instances
This commit is contained in:
23
pyproject.toml
Normal file
23
pyproject.toml
Normal file
@@ -0,0 +1,23 @@
|
||||
[tool.pylint]
|
||||
ignore = ".venv"
|
||||
ignore-patterns = ["__pycache__", ".pytest_cache"]
|
||||
disable = [
|
||||
"logging-fstring-interpolation", # W1203
|
||||
"f-string-without-interpolation", # W1309
|
||||
"broad-exception-caught", # W0718
|
||||
"missing-module-docstring", # C0114
|
||||
"missing-class-docstring", # C0115
|
||||
"missing-function-docstring", # C0116
|
||||
"line-too-long", # C0301
|
||||
]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
# log_cli = true # Uncomment this if you need it
|
||||
addopts = "-q --tb=short -s"
|
||||
log_cli_level = "INFO"
|
||||
log_cli_format = "%(asctime)s - %(levelname)s - %(name)s - %(message)s"
|
||||
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
|
||||
testpaths = [
|
||||
"tests"
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user