File size: 565 Bytes
dafca1d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
target-version = "py310"
line-length = 120

[lint]
select = [
    "E",   # pycodestyle errors
    "W",   # pycodestyle warnings
    "F",   # pyflakes
    "I",   # isort
    "UP",  # pyupgrade
    "B",   # flake8-bugbear
]
ignore = [
    "E501",  # line too long (ruff-format handles this)
    "E402",  # module-level import not at top (display.py must be imported first)
    "B008",  # function call in default argument
    "B904",  # raise without from inside except
    "B905",  # zip without strict (intentional)
]

[lint.isort]
known-first-party = ["autoteam"]