summaryrefslogtreecommitdiff
path: root/ruff.toml
blob: 2aaac4ac9715ea7e9b8b3c803e8395e11356f1b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Same as Black.
line-length = 100
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"