Created
February 4, 2025 20:40
-
-
Save brenorb/7892cd61e149681bc380401446084584 to your computer and use it in GitHub Desktop.
Ruff configuration for ignoring warnings on `import *`
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
[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