Skip to content

Commit

Permalink
Fixed package manifest so default values of configurations are proper…
Browse files Browse the repository at this point in the history
…ly reflected. This addresses #6711.
  • Loading branch information
erictraut committed Dec 12, 2023
1 parent 2a29cf1 commit dc3e56b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/vscode-pyright/schemas/pyrightconfig.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
"$id": "#/properties/enableExperimentalFeatures",
"type": "boolean",
"title": "Enable the use of experimental features that are not part of the Python typing spec",
"default": true
"default": false
},
"enableTypeIgnoreComments": {
"$id": "#/properties/enableTypeIgnoreComments",
Expand All @@ -165,7 +165,7 @@
"$id": "#/properties/deprecateTypingAliases",
"type": "boolean",
"title": "Treat typing-specific aliases to standard types as deprecated",
"default": true
"default": false
},
"reportGeneralTypeIssues": {
"$id": "#/properties/reportGeneralTypeIssues",
Expand Down Expand Up @@ -201,7 +201,7 @@
"$id": "#/properties/reportMissingTypeStubs",
"$ref": "#/definitions/diagnostic",
"title": "Controls reporting of imports that cannot be resolved to type stub files",
"default": "none"
"default": "warning"
},
"reportImportCycles": {
"$id": "#/properties/reportImportCycles",
Expand Down Expand Up @@ -243,7 +243,7 @@
"$id": "#/properties/reportWildcardImportFromLibrary",
"$ref": "#/definitions/diagnostic",
"title": "Controls reporting of wlidcard import from external library",
"default": "none"
"default": "warning"
},
"reportOptionalSubscript": {
"$id": "#/properties/reportOptionalSubscript",
Expand Down

0 comments on commit dc3e56b

Please sign in to comment.