Created
September 3, 2025 16:48
-
-
Save birkin/99a35259867d4b9e0346c4568910af0d to your computer and use it in GitHub Desktop.
ruff.toml template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## settings ## | |
| line-length = 125 | |
| indent-width = 4 | |
| target-version = "py38" | |
| [format] | |
| docstring-code-format = false | |
| indent-style = "space" | |
| line-ending = "auto" | |
| quote-style = "single" | |
| [lint.flake8-quotes] | |
| avoid-escape = true | |
| [lint.isort] | |
| case-sensitive = true | |
| [lint.pycodestyle] | |
| max-line-length = 125 | |
| [lint.pydocstyle] | |
| convention = "google" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment