# ============================================ # Projet : API-KA # Fichier : pyproject.toml # Node : m3u96b # Author : Simon-Pierre Boucher # Contact : contact@spboucher.ai # Date : 2026-08-16 # ============================================ [tool.black] line-length = 88 target-version = ["py311"] [tool.ruff] line-length = 88 target-version = "py311" [tool.ruff.lint] # E/W = pycodestyle, F = pyflakes, I = isort, UP = pyupgrade, B = bugbear select = ["E", "W", "F", "I", "UP", "B"] # E501 géré par black ; B008 = Depends() dans les signatures FastAPI (idiome officiel) ignore = ["E501", "B008"] [tool.pytest.ini_options] testpaths = ["tests"]