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