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