summaryrefslogtreecommitdiff
path: root/ruff.toml
blob: 9b2f72e6172d9edec9e014058075f37148278f43 (plain)
1
2
3
4
5
6
7
8
9
10
11
# ruff Python linter config file for cerbero project

line-length = 120
target-version = "py37"

[lint]
select = ["E4", "E7", "E9", "F", "FA102"]

[format]
# 5. Use single quotes for non-triple-quoted strings.
quote-style = "single"