[tool.ruff] line-length = 100 target-version = "py310" [tool.ruff.lint] select = [ "E", # pycodestyle errors "F", # pyflakes "I", # isort "N", # pep8-naming "UP", # pyupgrade "YTT", # flake8-2020 ] ignore = [ "E203", # whitespace before ':' "E501", # line too long ] [tool.ruff.lint.isort] known-third-party = ["fastapi", "pydantic", "sqlalchemy"] [tool.ruff.format] quote-style = "double" indent-style = "space" line-ending = "auto" skip-magic-trailing-comma = false