summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: df9eba7e638e106d9872c25b18a6c08ecc799d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[tool.ruff]
target-version = "py37"
select = [
    "B",
    "C",
    "E",
]
ignore = [
    "C901",  # Complexity
    "E501",  # Line length
    "E731",  # Do not assign a lambda expression (we use them on purpose)
    "E741",  # Ambiguous variable name
]
extend-exclude = [
    "tests/messages/data",
]
[tool.ruff.per-file-ignores]
"scripts/import_cldr.py" = ["E402"]