Created
February 9, 2026 16:50
-
-
Save bethdehart/7aec10a7281d58c8a5df933d33d3506f to your computer and use it in GitHub Desktop.
Ruff settings
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
| line-length = 120 | |
| indent-width = 4 | |
| target-version = "py314" | |
| [lint] | |
| # fixable = [] | |
| select = ["ALL"] | |
| ignore = ["D212", "D205", "D203", "COM812"] | |
| [format] | |
| # Like Black, use double quotes for strings. | |
| quote-style = "double" | |
| # Like Black, indent with spaces, rather than tabs. | |
| indent-style = "space" | |
| # Like Black, respect magic trailing commas. | |
| skip-magic-trailing-comma = false | |
| # Like Black, automatically detect the appropriate line ending. | |
| line-ending = "auto" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment