summaryrefslogtreecommitdiff
path: root/ruff.toml
blob: 189f2838fbbb345fc298431033fff5c6780ac9bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Same as Black.
line-length = 88
indent-width = 4

# Assume Python 3.11
target-version = "py311"

[format]
quote-style = "single"

# Like Black, indent with spaces, rather than tabs.
indent-style = "space"

# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false

# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"