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 df8480c commit 03db1daCopy full SHA for 03db1da
pyproject.toml
@@ -168,16 +168,25 @@ select = [
168
"PERF", # Perflint
169
"RUF", # Ruff-specific rules
170
"D", # pydocstyle
171
+ "FA100", # future annotations
172
]
173
ignore = [
174
"COM812", # missing trailing comma, ruff format conflict
175
176
+extend-safe-fixes = [
177
+ "UP006",
178
+ "UP007",
179
+]
180
+pyupgrade.keep-runtime-typing = false
181
182
[tool.ruff.lint.isort]
183
known-first-party = [
184
"libtmux",
185
186
combine-as-imports = true
187
+required-imports = [
188
+ "from __future__ import annotations",
189
190
191
[tool.ruff.lint.pydocstyle]
192
convention = "numpy"
0 commit comments