2023-05-10 04:43:55 +00:00
|
|
|
[tool.ruff]
|
|
|
|
|
2023-05-10 05:43:42 +00:00
|
|
|
exclude = ["extensions"]
|
|
|
|
|
2023-05-10 04:43:55 +00:00
|
|
|
ignore = [
|
|
|
|
"E501",
|
2023-05-10 05:43:42 +00:00
|
|
|
|
|
|
|
"F401", # Module imported but unused
|
2023-05-10 04:43:55 +00:00
|
|
|
]
|
|
|
|
|
2023-05-10 05:43:42 +00:00
|
|
|
|
|
|
|
[tool.ruff.per-file-ignores]
|
|
|
|
"webui.py" = ["E402"] # Module level import not at top of file
|