[tool.ruff] line-length = 100 target-version = "py39" select = [ "E", # pycodestyle errors "F", # pyflakes "I", # isort ] ignore = [ "E501", # line too long (handled by formatter) ] [tool.ruff.isort] known-third-party = ["fastapi", "pydantic", "sqlalchemy", "alembic", "jose", "passlib"]