Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add follow_untyped_imports from mypy 1.14 #4317

Merged
merged 3 commits into from
Dec 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/schemas/json/partial-mypy.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,12 @@
"default": false,
"type": "boolean"
},
"follow_untyped_imports": {
"description": "Makes mypy analyze imports from installed packages even if missing a py.typed marker or stubs.",
"x-intellij-html-description": "Makes mypy analyze imports from installed packages even if missing a <a href=\"https://mypy.readthedocs.io/en/stable/installed_packages.html#installed-packages\">py.typed marker or stubs</a>.",
"default": false,
"type": "boolean"
},
"follow_imports": {
"description": "Directs what to do with imports when the imported module is found as a `.py` file and not part of the files, modules and packages provided on the command line.",
"x-intellij-html-description": "Directs what to do with imports when the imported module is found as a <code>.py</code> file and not part of the files, modules and packages provided on the command line.",
Expand Down Expand Up @@ -626,6 +632,9 @@
"ignore_missing_imports": {
"$ref": "#/properties/ignore_missing_imports"
},
"follow_untyped_imports": {
"$ref": "#/properties/follow_untyped_imports"
},
"follow_imports": {
"$ref": "#/properties/follow_imports"
},
Expand Down
Loading