Skip to content

Commit

Permalink
fix: update pyproject.toml to solve issue 216
Browse files Browse the repository at this point in the history
  • Loading branch information
raffaellasuardini committed Feb 15, 2024
1 parent 433c572 commit 338f223
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ select=[
"PLR", # pylint refactor
"PLW", # pylint warning
"UP", # pyupgrade

]

extend-ignore = [
"PLR0915",
"C901",
"PLR0913",
"PLW1510",
"I001" ,
"PLR0912" ,
"E501"
"PLR0915", # too many statement
"C901", # complex-structure
"PLR0913", # too many arguments
"PLW1510", # subprocess-run-without-check
"PLR0912" , # too-many-branches

]

0 comments on commit 338f223

Please sign in to comment.