health-check/pyproject.toml
Ronaldo Dias bc5c03118f Adiciona linting config e body JSON no ping
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-07 03:01:14 -03:00

20 lines
415 B
TOML

[tool.ruff]
target-version = "py39"
line-length = 110
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
]
ignore = [
"B904", # raise from exc — não obrigatório em scripts simples
]
[tool.ruff.lint.isort]
known-first-party = ["healthcheck"]