[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"]