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 11446bb commit e1e5759Copy full SHA for e1e5759
pyproject.toml
@@ -195,16 +195,25 @@ select = [
195
"PERF", # Perflint
196
"RUF", # Ruff-specific rules
197
"D", # pydocstyle
198
+ "FA100", # future annotations
199
]
200
ignore = [
201
"COM812", # missing trailing comma, ruff format conflict
202
203
+extend-safe-fixes = [
204
+ "UP006",
205
+ "UP007",
206
+]
207
+pyupgrade.keep-runtime-typing = false
208
209
[tool.ruff.lint.isort]
210
known-first-party = [
211
"django_docutils",
212
213
combine-as-imports = true
214
+required-imports = [
215
+ "from __future__ import annotations",
216
217
218
[tool.ruff.lint.pydocstyle]
219
convention = "numpy"
0 commit comments