Files
azuredatastudio/extensions/yaml/package.json
Karl Burtram 251ae01c3e Initial VS Code 1.19 source merge (#571)
* Initial 1.19 xcopy

* Fix yarn build

* Fix numerous build breaks

* Next batch of build break fixes

* More build break fixes

* Runtime breaks

* Additional post merge fixes

* Fix windows setup file

* Fix test failures.

* Update license header blocks to refer to source eula
2018-01-28 23:37:17 -08:00

30 lines
733 B
JSON

{
"name": "yaml",
"version": "0.1.0",
"publisher": "vscode",
"engines": { "vscode": "*" },
"scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js textmate/yaml.tmbundle Syntaxes/YAML.tmLanguage ./syntaxes/yaml.json"
},
"contributes": {
"languages": [{
"id": "yaml",
"aliases": ["YAML", "yaml"],
"extensions": [".eyaml", ".eyml", ".yaml", ".yml"],
"filenames": [ "yarn.lock" ],
"firstLine": "^#cloud-config",
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "yaml",
"scopeName": "source.yaml",
"path": "./syntaxes/yaml.json"
}],
"configurationDefaults": {
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
}
}
}
}