File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
vscode-extensions/vscode-concourse Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ for editing [Concourse](https://concourse-ci.org/) Pipeline and Task configurati
88The Concourse editor automatically activates when the name of the ` .yml ` file you are editing
99follows a certain pattern:
1010
11- - ` **/*pipeline*.yml ` | ` **/pipeline/*.yml ` : activates support for editing pipelines
12- - ` **/ci/**/tasks/*.yml ` | ` **/*task.yml ` : activates support for editing tasks.
11+ - ` **/*pipeline*.yml ` | ` **/pipeline/*.yml ` | ` **/*pipeline*.yaml ` | ` **/pipeline/*.yaml ` : activates support for editing pipelines
12+ - ` **/ci/**/tasks/*.yml ` | ` **/*task.yml ` | ` **/ci/**/tasks/*.yaml ` | ` **/*task.yaml ` : activates support for editing tasks.
1313
1414You can also define your own patterns and map them to the language-ids ` concourse-pipeline-yaml `
1515or ` concourse-task-yaml ` by defining ` files.associations ` in workspace settings.
Original file line number Diff line number Diff line change 7070 ],
7171 "filenamePatterns" : [
7272 " *pipeline*.yml" ,
73- " **/pipeline/*.yml"
73+ " **/pipeline/*.yml" ,
74+ " *pipeline*.yaml" ,
75+ " **/pipeline/*.yaml"
7476 ],
7577 "firstLine" : " ^#(\\ s)*pipeline(\\ s)*" ,
7678 "configuration" : " ./yaml-support/language-configuration.json"
8486 " **/ci/*task.yml" ,
8587 " **/ci/**/tasks/*.yml" ,
8688 " **/concourse/*task.yml" ,
87- " **/concourse/**/tasks/*.yml"
89+ " **/concourse/**/tasks/*.yml" ,
90+ " **/ci/*task.yaml" ,
91+ " **/ci/**/tasks/*.yaml" ,
92+ " **/concourse/*task.yaml" ,
93+ " **/concourse/**/tasks/*.yaml"
8894 ],
8995 "firstLine" : " ^#(\\ s)*task(\\ s)*" ,
9096 "configuration" : " ./yaml-support/language-configuration.json"
You can’t perform that action at this time.
0 commit comments