Skip to content

Commit

Permalink
Add comments to other ruff rule ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
TheByronHimes committed Sep 22, 2023
1 parent 9944395 commit 440b247
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ exclude = [
]

ignore = [
"E",
"W",
"PLW",
"RUF001",
"E", # pycodestyle errors
"W", # pycodestyle warnings - pycodestyle covered by black
"PLW", # pylint warnings
"RUF001", # ambiguous unicode character strings
"RUF010", # explicit conversion to string or repr: !s or !r
"B008", # function call in arg defaults
]
Expand Down

0 comments on commit 440b247

Please sign in to comment.