mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
49 lines
No EOL
932 B
JSON
49 lines
No EOL
932 B
JSON
{
|
|
"name": "yaml",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"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.tmLanguage.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.tmLanguage.json"
|
|
}
|
|
],
|
|
"configurationDefaults": {
|
|
"[yaml]": {
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 2,
|
|
"editor.autoIndent": false
|
|
}
|
|
}
|
|
}
|
|
} |