vscode/extensions/yaml/package.json

48 lines
914 B
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"name": "yaml",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.0.0",
2015-11-13 13:39:38 +00:00
"publisher": "vscode",
"license": "MIT",
2018-02-22 02:44:02 +00:00
"engines": {
"vscode": "*"
},
"scripts": {
2018-02-09 11:15:33 +00:00
"update-grammar": "node ../../build/npm/update-grammar.js textmate/yaml.tmbundle Syntaxes/YAML.tmLanguage ./syntaxes/yaml.tmLanguage.json"
},
2015-11-13 13:39:38 +00:00
"contributes": {
2018-02-22 02:44:02 +00:00
"languages": [
{
"id": "yaml",
"aliases": [
"YAML",
"yaml"
],
"extensions": [
".yml",
2018-02-22 02:44:02 +00:00
".eyaml",
".eyml",
".yaml"
2018-02-22 02:44:02 +00:00
],
"firstLine": "^#cloud-config",
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "yaml",
"scopeName": "source.yaml",
"path": "./syntaxes/yaml.tmLanguage.json"
}
],
"configurationDefaults": {
"[yaml]": {
"editor.insertSpaces": true,
2018-02-22 02:44:02 +00:00
"editor.tabSize": 2,
2019-11-27 16:29:07 +00:00
"editor.autoIndent": "advanced"
}
}
2015-11-13 13:39:38 +00:00
}
2019-11-27 16:29:07 +00:00
}