mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 01:25:36 -05:00
* Merge from vscode a5cf1da01d5db3d2557132be8d30f89c38019f6c * remove files we don't want * fix hygiene * update distro * update distro * fix hygiene * fix strict nulls * distro * distro * fix tests * fix tests * add another edit * fix viewlet icon * fix azure dialog * fix some padding * fix more padding issues
48 lines
914 B
JSON
48 lines
914 B
JSON
{
|
|
"name": "yaml",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"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": [
|
|
".yml",
|
|
".eyaml",
|
|
".eyml",
|
|
".yaml"
|
|
],
|
|
"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": "advanced"
|
|
}
|
|
}
|
|
}
|
|
}
|