timeout,ruff
All checks were successful
deploy / deploy (push) Successful in 1m7s

This commit is contained in:
2023-10-17 18:22:05 +03:00
parent 7a561603ed
commit 878c0dc216
2 changed files with 13 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ itsdangerous = "^2.1.2"
[tool.poetry.dev-dependencies]
pytest = "^7.4.2"
black = { version = "^23.9.1", python = ">=3.12" }
ruff = { version = "^0.1.0", python = ">=3.12" }
[tool.black]
line-length = 120
@@ -53,3 +54,13 @@ force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
[tool.ruff]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
select = ["E4", "E7", "E9", "F"]
ignore = []
line-length = 120
target-version = "py312"