Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
Signed-off-by: Alina Buzachis <abuzachis@redhat.com>
  • Loading branch information
alinabuzachis committed Apr 24, 2024
1 parent dbbb9c3 commit 599d7ab
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ known_ansible_community_aws = [ "ansible_collections.community.aws",]
transform-joins = true
exclude = [ "ec2_metadata_facts",]


[tool.ruff]
builtins = [ "__",]
line-length = 120
Expand Down Expand Up @@ -81,7 +80,10 @@ ignore = [
]

# Disable fix for unused imports (`F401`).
unfixable = ["F401"]
fixable = ["ALL"]

# Avoid trying to fix flake8-bugbear (`B`) violations.
unfixable = ["F401", "B"]

# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
Expand Down Expand Up @@ -119,7 +121,7 @@ quote-style = "double"
indent-style = "space"

# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = true
skip-magic-trailing-comma = false

# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
Expand All @@ -136,4 +138,4 @@ docstring-code-format = false
#
# This only has an effect when the `docstring-code-format` setting is
# enabled.
docstring-code-line-length = "dynamic"
docstring-code-line-length = "dynamic"

0 comments on commit 599d7ab

Please sign in to comment.