[tool.ruff] # Exclude a variety of commonly ignored directories. exclude = [ ".eggs", ".git", "build", "dist", ] # Same as Black. line-length = 88 [tool.ruff.lint.mccabe] # Unlike Flake8, default to a complexity level of 10. max-complexity = 10 [tool.ruff.lint.per-file-ignores] "sphinx_runpython/runpython/sphinx_runpython_extension.py" = ["F401"]