1
0
forked from Mirrors/itch-dl

Add Ruff linting configs, fix reported warnings

This commit is contained in:
Ryszard Knop
2024-03-17 01:15:04 +01:00
parent d05bfe3164
commit 25ace8f358
4 changed files with 18 additions and 5 deletions

View File

@@ -37,3 +37,10 @@ itch-dl = "itch_dl.cli:run"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
target-version = "py38"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B", "C4", "T10", "N", "UP", "S"]