summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: aeee57024c30483eb161c6717ae5effe970f0ea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
[tool.ruff]
target-version = "py37"
select = [
    "B",
]
ignore = [
    "C901",  # Complexity
    "E501",  # Line length
    "E741",  # Ambiguous variable name
]
extend-exclude = [
    "tests/messages/data",
]