File size: 390 Bytes
fcedcce 2e75271 fcedcce 1d98b51 fcedcce | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | exclude = [
".git",
".venv",
"__pycache__",
"docs",
".github",
"build",
"dist",
"tests",
"benchmarks.py",
]
# Assume Python 3.10
target-version = "py310"
# Allow lines to be as long as 120.
line-length = 120
[lint]
select = ["E", "F", "W"]
ignore = ["E501", "F401", "F811"]
[format]
# Like Black, use double quotes for strings.
quote-style = "double"
|