
Change-Id: I923cf6b278e29fbeb99130fdee8923371818cc16 Signed-off-by: croy <Christian.Roy@windriver.com>
17 lines
415 B
TOML
17 lines
415 B
TOML
[tool.isort]
|
|
py_version = "311"
|
|
profile = "black"
|
|
line_length = 200 # Allows longer imports without excessive wrapping
|
|
|
|
[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
|
|
skip-checking-raises = true # Ignore Raises section requirement
|