18 lines
417 B
TOML
18 lines
417 B
TOML
# Same as Black.
|
|
line-length = 100
|
|
indent-width = 4
|
|
|
|
# Assume Python 3.12
|
|
target-version = "py312"
|
|
|
|
[lint]
|
|
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
|
|
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
|
|
# McCabe complexity (`C901`) by default.
|
|
select = ["E", "F", "W"]
|
|
ignore = ["E501"]
|
|
|
|
[format]
|
|
# Like Black, use double quotes for strings.
|
|
quote-style = "single"
|