16 lines
338 B
TOML
16 lines
338 B
TOML
[tool.isort]
|
|
py_version = "311"
|
|
profile = "black"
|
|
|
|
[tool.black]
|
|
target-version = ['py311']
|
|
preview = true
|
|
include = '\.py'
|
|
line-length = 9999 # Prevents Black from arbitrarily wrapping lines
|
|
|
|
[tool.pydoclint]
|
|
style = "google"
|
|
check-return-types = true
|
|
allow-init-docstring = true
|
|
ignore = ["DOC501"] # Ignore Raises section requirement
|