We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using sphinx-gallery you regularly write example files that need to start with a RST-style heading in the module docstring.
sphinx-gallery
""" My example ========== My example explanation """ print("my_example")
The autofix rule for D400 adds a dot at the end of the underline, making it invalid RST and breaking the Sphinx build
After transformation:
""" My example ==========. My example explanation """ print("my_example")
Tested in latest ruff version (0.1.6)
The text was updated successfully, but these errors were encountered:
Closed by #8929 -- thanks for reporting!
Sorry, something went wrong.
charliermarsh
No branches or pull requests
When using
sphinx-gallery
you regularly write example files that need to start with a RST-style heading in the module docstring.The autofix rule for D400 adds a dot at the end of the underline, making it invalid RST and breaking the Sphinx build
After transformation:
Tested in latest ruff version (0.1.6)
The text was updated successfully, but these errors were encountered: