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