23 lines
334 B
TOML
23 lines
334 B
TOML
exclude = [
|
|
".git",
|
|
".venv",
|
|
"__pycache__",
|
|
"docs",
|
|
".github",
|
|
"build",
|
|
"dist",
|
|
"tests",
|
|
"benchmarks.py",
|
|
]
|
|
|
|
# Assume Python 3.9
|
|
target-version = "py39"
|
|
|
|
[lint]
|
|
select = ["E", "F", "W"]
|
|
ignore = ["E501", "F401", "F811"]
|
|
|
|
[format]
|
|
# Like Black, use double quotes for strings.
|
|
quote-style = "double"
|