##// END OF EJS Templates
ruff: code-cleanups
ruff: code-cleanups

File last commit:

r1099:170035d4 python3
r1100:bb0b5a8e python3
Show More
pyproject.toml
24 lines | 358 B | text/plain | TOMLLexer
[project]
name = "rhodecode-vcsserver"
description = ""
requires-python = ">=3.10"
version = "5.0.0"
[tool.ruff]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001"
]
ignore = [
"E501", # line too long, handled by black
]
# Same as Black.
line-length = 120
[tool.ruff.isort]
known-first-party = ["vcsserver"]