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

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

    # Ignore SyntaxError due to ruff not supporting pattern matching
    # https://github.com/charliermarsh/ruff/issues/282
    "E999",
]

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