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