Hi,
I have a JSON schema file in my project that I want to apply to several YAML files.
This is my .vscode/settings.json:
{
"yaml.format.enable": true,
"yaml.schemas": {
"./my.schema.json": "*.repo.yml"
}
}
where ./my.schema.json is the relative path to my JSON schema file.
This configuration was working as intended until yesterday. Now it only works if I specify an absolute path for the JSON schema file.
Any ideas?
Thanks 😄
Hi,
I have a JSON schema file in my project that I want to apply to several YAML files.
This is my
.vscode/settings.json:{ "yaml.format.enable": true, "yaml.schemas": { "./my.schema.json": "*.repo.yml" } }where
./my.schema.jsonis the relative path to my JSON schema file.This configuration was working as intended until yesterday. Now it only works if I specify an absolute path for the JSON schema file.
Any ideas?
Thanks 😄