To make use of the autocompletion and linting available via the official GitLab extension for VSCode (I'm sure similar things exist for other IDEs) we should rename all of the templates in this project to follow the *.gitlab-ci.yml naming convention as this is how these extensions and linters etc. will determine that a specific yaml file is in fact a gitlab-ci type file.
Obviously, this is a breaking change. So, we would need to bump the repo to a new v3.0.0 release.
Here is an example of the vscode autocomplete suggesting the predefined CI variables in a drop-down list #winning!
Edited
Designs
Child items ...
Show closed items
Linked items 0
Link issues together to show that they're related or that one is blocking others.
Learn more.
Since this is VSCode specific, would it not be far simpler to, rather than force a breaking change, create a .vscode/settings.json file in the root of the repo with
"files.associations":{"**/*.yaml":"gitlab-ci"}
in it? (Replacing "gitlab-ci" with whatever the language mode identifier shown in the Change Language Mode (⌘K M) dropdown is.)
Alternatively, and I'm not familiar enough with VSCode to know the answer to this, does VSCode support something like vim modelines? E.g. for vim I could add a comment to a file like the following to force a particular syntax highlighting mode if I couldn't configure my editor any other way:
I'd much rather open a MR on the VSCode extension itself to a) register the GitLab CI YAML as a language extension and b) pass the language id to registerCompletionItemProvider. This is, according to the scant docs I can find, more the "expected" form of a document selector, not a file glob.
Moving this to workflowReview Required. This ended up being super easy to fix with a VSCode workspace setting to tell all yaml files to use the GitLab schema.