Created
August 6, 2025 18:56
-
-
Save radupotop/b88225d36ef0e7c847fde02e9b6539e0 to your computer and use it in GitHub Desktop.
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
# 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