Skip to content

Instantly share code, notes, and snippets.

@brenorb
Created February 4, 2025 20:40
Show Gist options
  • Save brenorb/7892cd61e149681bc380401446084584 to your computer and use it in GitHub Desktop.
Save brenorb/7892cd61e149681bc380401446084584 to your computer and use it in GitHub Desktop.
Ruff configuration for ignoring warnings on `import *`
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py39"
ignore = ["F403", "F405"] # Ignore wildcard import warnings
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment