File size: 326 Bytes
cc521be |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
line-length = 120
target-version = "py311"
[lint]
select = ["ALL"]
ignore = [
"D", # pydocstyle
"EM101", # raw-string-in-exception
"EM102", # f-string-in-exception
"FBT001", # boolean-type-hint-positional-argument
"N806", # non-lowercase-variable-in-function
"TRY003", # raise-vanilla-args
]
|