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 missing properties to mypy schema #4088

Merged
merged 1 commit into from
Sep 20, 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
27 changes: 27 additions & 0 deletions src/schemas/json/partial-mypy.json
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,33 @@
"default": false,
"description": "UNDOCUMENTED: show links for error codes."
},
"disable_bytearray_promotion": {
"type": "boolean",
"default": false,
"description": "UNDOCUMENTED. Disables automatic promotion of `bytearray` to `bytes` type. Is set to `true` in strict mode.",
"x-intellij-html-description": "UNDOCUMENTED. Disables automatic promotion of <code>bytearray</code> to <code>bytes</code> type. Is set to <code>true</code> in strict mode."
},
"disable_memoryview_promotion": {
"type": "boolean",
"default": false,
"description": "UNDOCUMENTED. Disables automatic promotion of `memoryview` to `bytes` type. Is set to `true` in strict mode.",
"x-intellij-html-description": "UNDOCUMENTED. Disables automatic promotion of <code>memoryview</code> to <code>bytes</code> type. Is set to <code>true</code> in strict mode."
},
"enable_incomplete_feature": {
"description": "Enable a preview of incomplete features that are not yet enabled by default by the current version of mypy. Note that it is not guaranteed that all features will be ultimately enabled by default.",
"x-intellij-html-description": "Enable a preview of incomplete features that are not yet enabled by default by the current version of mypy. Note that it is not guaranteed that all features will be ultimately enabled by default.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"overrides": {
"type": "array",
"items": {
Expand Down
Loading