2024-04-10 03:09:33 +08:00
|
|
|
[tool.ruff]
|
2022-12-24 20:26:55 +08:00
|
|
|
line-length = 88
|
2024-04-10 03:09:33 +08:00
|
|
|
indent-width = 4
|
|
|
|
target-version = "py312"
|
2023-02-03 01:31:07 +08:00
|
|
|
src = ["app_api", "app_bot", "app_worker"]
|
2024-04-26 04:09:50 +08:00
|
|
|
required-version = ">=0.4.2"
|
2023-12-13 05:49:20 +08:00
|
|
|
|
2024-04-10 03:09:33 +08:00
|
|
|
[tool.ruff.lint]
|
|
|
|
select = ["F", "E", "W", "I001", "RET", "SLF001"]
|
2024-03-21 01:25:07 +08:00
|
|
|
ignore = ["E501"] # Skip line length violations
|
|
|
|
|
2024-04-10 03:09:33 +08:00
|
|
|
[tool.ruff.format]
|
2023-12-13 05:49:20 +08:00
|
|
|
indent-style = "space"
|
|
|
|
quote-style = "single"
|
|
|
|
line-ending = "lf"
|