File size: 349 Bytes
7ce1db7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
[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
|