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 3223ae4 commit 05560d2Copy full SHA for 05560d2
1 file changed
pyproject.toml
@@ -172,6 +172,23 @@ score = false
172
[tool.pylint.variables]
173
init-import = true
174
175
+[tool.pyrefly]
176
+python-version = "3.14"
177
+
178
+replace-imports-with-any = [
179
+ "parted", # pyparted doesn't have type hints
180
+]
181
182
+[tool.pyrefly.errors]
183
+# Enable some additional rules that are disabled by default
184
+implicit-abstract-class = true
185
+missing-override-decorator = true
186
+missing-source = true
187
+not-required-key-access = true
188
+open-unpacking = true
189
+unannotated-parameter = true
190
+unused-ignore = true
191
192
[tool.ruff]
193
target-version = "py314"
194
line-length = 160
0 commit comments