13 lines
195 B
TOML
13 lines
195 B
TOML
[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 |