summaryrefslogtreecommitdiff
path: root/backend/pyproject.toml
blob: dd5a6c0389f3076649d7a5b34931d6011d57f9f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
[flake8]
max-line-length = 88

[tool.ruff]
ignore = [
    # Ignore line length check and let Black handle it
    "E501"
]

# Assume Python 3.10.
target-version = "py310"