Skip to content

Commit

Permalink
[ruff] Add consider-merging-multiple-comparison
Browse files Browse the repository at this point in the history
It's long so it's formatting the pyproject.toml to avoid conflict
  • Loading branch information
Pierre-Sassoulas committed Oct 9, 2024
1 parent b409cb6 commit 559d9b0
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,14 @@ line-length = 120
[tool.ruff]
line-length = 120
lint.select = [
"B", # bugbear
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"RUF", # ruff
"UP", # pyupgrade
"W", # pycodestyle
"B", # bugbear
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"PLR1714", # Consider merging multiple comparisons
"RUF", # ruff
"UP", # pyupgrade
"W", # pycodestyle
]
lint.ignore = [
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
Expand Down

0 comments on commit 559d9b0

Please sign in to comment.