23 lines
282 B
TOML
23 lines
282 B
TOML
line-length = 120
|
|
indent-width = 4
|
|
target-version = "py312"
|
|
|
|
exclude = [
|
|
".venv",
|
|
".vscode",
|
|
"test/*"
|
|
]
|
|
|
|
[lint]
|
|
select = ["E", "F"]
|
|
ignore = [
|
|
"E501",
|
|
"B008",
|
|
"C901",
|
|
"F401",
|
|
"W191",
|
|
]
|
|
|
|
[format]
|
|
# use double quotes for strings.
|
|
quote-style = "double" |