summaryrefslogtreecommitdiff
path: root/ruff.toml
blob: 24256d150bd4334a86240c68dc023b59e958f62e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
exclude = [
  ".git",
  "build*",
  "site-packages",
  "venv"
]

line-length = 100
indent-width = 4

target-version = "py312"

[lint]
select = ["E4", "E7", "E9", "F", "ANN", "RUF019"]
ignore = ["ANN101", "ANN102", "ANN401"]

fixable = ["ALL"]
unfixable = []

[format]
quote-style = "single"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "lf"