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

exclude = ["extensions"]

ignore = [
	"E501",
	
	"F401", # Module imported but unused
]


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