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

target-version = "py310"

exclude = ["extensions"]

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