We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b409cb6 commit 559d9b0Copy full SHA for 559d9b0
pyproject.toml
@@ -67,13 +67,14 @@ line-length = 120
67
[tool.ruff]
68
line-length = 120
69
lint.select = [
70
- "B", # bugbear
71
- "E", # pycodestyle
72
- "F", # pyflakes
73
- "I", # isort
74
- "RUF", # ruff
75
- "UP", # pyupgrade
76
- "W", # pycodestyle
+ "B", # bugbear
+ "E", # pycodestyle
+ "F", # pyflakes
+ "I", # isort
+ "PLR1714", # Consider merging multiple comparisons
+ "RUF", # ruff
+ "UP", # pyupgrade
77
+ "W", # pycodestyle
78
]
79
lint.ignore = [
80
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
0 commit comments