Files
rustycms/.vscode/settings.json

92 lines
2.1 KiB
JSON

{
"json.schemas": [
{
"fileMatch": [
"content/blog_post/*.json5",
"content/blog_post/*.json"
],
"url": "./schemas/blog_post.schema.json"
},
{
"fileMatch": [
"content/content_layout/*.json5",
"content/content_layout/*.json"
],
"url": "./schemas/content_layout.schema.json"
},
{
"fileMatch": [
"content/fullwidth_banner/*.json5",
"content/fullwidth_banner/*.json"
],
"url": "./schemas/fullwidth_banner.schema.json"
},
{
"fileMatch": [
"content/markdown/*.json5",
"content/markdown/*.json"
],
"url": "./schemas/markdown.schema.json"
},
{
"fileMatch": [
"content/page/*.json5",
"content/page/*.json"
],
"url": "./schemas/page.schema.json"
},
{
"fileMatch": [
"content/post/*.json5",
"content/post/*.json"
],
"url": "./schemas/post.schema.json"
},
{
"fileMatch": [
"content/product/*.json5",
"content/product/*.json"
],
"url": "./schemas/product.schema.json"
},
{
"fileMatch": [
"content/seo/*.json5",
"content/seo/*.json"
],
"url": "./schemas/seo.schema.json"
},
{
"fileMatch": [
"content/tag/*.json5",
"content/tag/*.json"
],
"url": "./schemas/tag.schema.json"
},
{
"fileMatch": [
"content/calendar/*.json5",
"content/calendar/*.json",
"content/*/calendar/*.json5",
"content/*/calendar/*.json"
],
"url": "./schemas/calendar.schema.json"
},
{
"fileMatch": [
"content/calendar_item/*.json5",
"content/calendar_item/*.json",
"content/*/calendar_item/*.json5",
"content/*/calendar_item/*.json"
],
"url": "./schemas/calendar_item.schema.json"
},
{
"fileMatch": [
"content/*/translation_bundle/*.json5",
"content/*/translation_bundle/*.json"
],
"url": "./schemas/translation_bundle.schema.json"
}
]
}