[tool.isort] profile = "black" line_length = 120 [tool.black] line-length = 120 target-version = ['py310'] [tool.ruff] line-length = 120 [tool.ruff.lint] select = ["E", "F", "W", "I"] fixable = ["ALL"] ignore = [] [tool.ruff.lint.per-file-ignores] "__init__.py" = ["F401"] # Ignore unused imports in __init__.py files