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.
ruff format
1 parent e1ab9e7 commit afbc25bCopy full SHA for afbc25b
pyproject.toml
@@ -142,6 +142,7 @@ select = [
142
"UP", # pyupgrade
143
"B", # flake8-bugbear
144
"C4", # flake8-comprehensions
145
+ "COM", # flake8-commas
146
"Q", # flake8-quotes
147
"PTH", # flake8-use-pathlib
148
"SIM", # flake8-simplify
@@ -150,6 +151,9 @@ select = [
150
151
"RUF", # Ruff-specific rules
152
"D", # pydocstyle
153
]
154
+ignore = [
155
+ "COM812", # missing trailing comma, ruff format conflict
156
+]
157
158
[tool.ruff.lint.isort]
159
known-first-party = [
0 commit comments