Files
decluttarr/pyproject.toml
2025-05-18 13:11:12 +02:00

24 lines
704 B
TOML

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