T145's picture
Fixed Ruff runtime
7ce1db7
raw
history blame contribute delete
349 Bytes
[tool.ruff]
exclude = [".pixi", "__pycache__"]
ignore = ["E501", "E402"]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# Warnings
"W",
# isort
"I",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# flake8-quotes
"Q",
# flake8-async
"ASYNC"
]
line-length = 132