mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-21 22:56:38 +01:00
83a164e5ef
Co-authored-by: Hinrich Mahler <22366557+Bibo-Joshi@users.noreply.github.com> Co-authored-by: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com> Co-authored-by: Harshil Mehta <37377066+harshil21@users.noreply.github.com>
18 lines
464 B
TOML
18 lines
464 B
TOML
[tool.black]
|
|
line-length = 99
|
|
target-version = ['py37', 'py38', 'py39', 'py310', 'py311']
|
|
|
|
[tool.isort] # black config
|
|
profile = "black"
|
|
line_length = 99
|
|
|
|
[tool.ruff]
|
|
line-length = 99
|
|
target-version = "py37"
|
|
show-fixes = true
|
|
ignore = ["PLR2004", "PLR0911", "PLR0912", "PLR0913", "PLR0915"]
|
|
select = ["E", "F", "I", "PL", "UP", "RUF", "PTH", "C4", "B", "PIE", "SIM", "RET", "RSE",
|
|
"G", "ISC", "PT"]
|
|
|
|
[tool.ruff.per-file-ignores]
|
|
"tests/*.py" = ["B018"]
|