Skip to content

Instantly share code, notes, and snippets.

@bethdehart
Created February 9, 2026 16:50
Show Gist options
  • Select an option

  • Save bethdehart/7aec10a7281d58c8a5df933d33d3506f to your computer and use it in GitHub Desktop.

Select an option

Save bethdehart/7aec10a7281d58c8a5df933d33d3506f to your computer and use it in GitHub Desktop.
Ruff settings
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