pair2rank / ruff.toml
dustalov's picture
Fix typing and linting
832c761 verified
raw
history blame contribute delete
326 Bytes
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
]