ladybird/pyproject.toml
Timothy Flynn 1b7b531d61 Meta: Use "extend-select" to enable non-default python linters
This way we don't have to track the defaults.
2025-06-09 17:49:35 -04:00

13 lines
221 B
TOML

[tool.ruff]
line-length = 120
[tool.ruff.lint]
# https://docs.astral.sh/ruff/rules/
extend-select = [
"B", # flake8-bugbear
"I", # isort
]
[tool.ruff.lint.isort]
force-single-line = true
lines-between-types = 1