mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 17:22:42 -05:00
* 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
30 lines
733 B
JSON
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
|
|
}
|
|
}
|
|
}
|
|
} |