aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 24f5b1aed3dc3cb233ffa2b86d20053a39f43b9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[tool.ruff]

target-version = "py310"

exclude = [
	"extensions",
	"extensions-disabled",
]

ignore = [
	"E501", # Line too long
	"E731", # Do not assign a `lambda` expression, use a `def`
]


[tool.ruff.per-file-ignores]
"webui.py" = ["E402"]  # Module level import not at top of file