Skip to content

Instantly share code, notes, and snippets.

@radupotop
Created August 6, 2025 18:56
Show Gist options
  • Save radupotop/b88225d36ef0e7c847fde02e9b6539e0 to your computer and use it in GitHub Desktop.
Save radupotop/b88225d36ef0e7c847fde02e9b6539e0 to your computer and use it in GitHub Desktop.
# https://docs.astral.sh/ruff/settings/
#
# extend = "../pyproject.toml"
line-length = 90
[lint]
select = ["E", "F"] # Pyflakes and pycodestyle
ignore = ["E501"] # Allow long lines
unfixable = ["F401"] # Allow unused imports
[lint.per-file-ignores]
"__init__.py" = ["E402", "F401"] # Ignore import violations
[format]
quote-style = "preserve"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "lf"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment