41 lines
588 B
TOML
41 lines
588 B
TOML
target-version = "py311"
|
|
|
|
[lint]
|
|
select = ["ALL"]
|
|
ignore = [
|
|
"D203",
|
|
"D212",
|
|
"COM812",
|
|
"T201",
|
|
"D1",
|
|
"PLC0415",
|
|
"ANN401",
|
|
"PLR0913",
|
|
"PLR2004",
|
|
"C901",
|
|
"PLR0911",
|
|
"PLR0912",
|
|
"PLR0915",
|
|
"BLE001",
|
|
"ASYNC109",
|
|
"ASYNC110",
|
|
"TRY004",
|
|
]
|
|
unfixable = ["F401"]
|
|
|
|
[lint.per-file-ignores]
|
|
"tests/*" = ["ALL"]
|
|
"examples/*" = ["ALL"]
|
|
"scripts/*" = ["ALL"]
|
|
"*.lock" = ["ALL"]
|
|
|
|
[lint.pydocstyle]
|
|
convention = "google"
|
|
|
|
[lint.isort]
|
|
split-on-trailing-comma = false
|
|
|
|
[format]
|
|
docstring-code-format = true
|
|
skip-magic-trailing-comma = true
|