[tool.black]
line-length = 88
target-version = ["py311"]
[tool.isort]
profile = "black"
line_length = 88
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"N",
"UP",
"B",
"D",
]
ignore = ["D203", "D212"]
[tool.ruff.lint.pydocstyle]
convention = "google"