mirror of
https://github.com/tropicoo/yt-dlp-bot.git
synced 2024-11-10 09:03:02 +08:00
15 lines
345 B
TOML
15 lines
345 B
TOML
[tool.ruff]
|
|
line-length = 88
|
|
indent-width = 4
|
|
target-version = "py312"
|
|
src = ["app_api", "app_bot", "app_worker"]
|
|
required-version = ">=0.4.2"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["F", "E", "W", "I001", "RET", "SLF001"]
|
|
ignore = ["E501"] # Skip line length violations
|
|
|
|
[tool.ruff.format]
|
|
indent-style = "space"
|
|
quote-style = "single"
|
|
line-ending = "lf"
|