Skip to content

Commit

Permalink
Update ruff.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Mar 22, 2024
1 parent 071db6d commit 14891f3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion umu/ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,15 @@ select = [
"ISC",
# Ensure we're smart when using the logger
# Specific log statements should execute only when necessary
"G"
"G",
# Prefer collapsing nested if-elif in the else branch
"PLR5501",
# Simply and catch redundant logic
"SIM",
# Ensure no useless arguments/paramaters
"ARG",
# Ensure explicit check= for subprocess.run to avoid silent failures
"PLW1510"
]
ignore = [
# Format
Expand Down

0 comments on commit 14891f3

Please sign in to comment.