Does this issue occur when all extensions are disabled?: Yes
- VS Code Version: 1.88.1
- OS Version: Windows 10 Enterprise 10.0.19045
Steps to Reproduce:
- Define a JSON schema with array tuple validation:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
- Let VSCode validate an invalid file:
- Observe that VSCode does not show any error even though the file is not valid against the schema.