At work, we use a lot of AWS Cloudformation but put yaml files in a folder and name the file based on their use for example template-main for the main stack and template-s3 for an s3 bucket that the main stack will reference.
This means fileMatcher expression for cloud formation files will never match.
it would be great if this plugin had something like :SchemaStoreUse "AWS CloudFormation" so that I can "focre" it to use a given schema by name for the current buffer or allow appending to the fileMatcher in the configuration so that something like the below works
{
name = "AWS CloudFormation",
match = { "cloudformatoin/*.{yml, yaml}",},
}
At work, we use a lot of AWS Cloudformation but put yaml files in a folder and name the file based on their use for example
template-mainfor the main stack andtemplate-s3for an s3 bucket that the main stack will reference.This means
fileMatcherexpression for cloud formation files will never match.it would be great if this plugin had something like
:SchemaStoreUse "AWS CloudFormation"so that I can "focre" it to use a given schema by name for the current buffer or allow appending to thefileMatcherin the configuration so that something like the below works{ name = "AWS CloudFormation", match = { "cloudformatoin/*.{yml, yaml}",}, }