Files
systemd/ruff.toml
2026-05-18 09:43:36 +09:00

20 lines
467 B
TOML

target-version = "py39"
line-length = 109
# This file is imported from an external project.
extend-exclude = ["tools/chromiumos/gen_autosuspend_rules.py"]
[lint]
select = ["E", "F", "I", "Q", "UP"]
# E501: line-too-long
ignore = ["E501"]
[format]
# The formatter prefers double quotes for multiline quotes,
# Hence, let's make the formatter not change quotations.
quote-style = "preserve"
[lint.flake8-quotes]
inline-quotes = "single"
multiline-quotes = "single"