mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
SQL Operations Studio Public Preview 1 (0.23) release source code
This commit is contained in:
29
extensions/yaml/package.json
Normal file
29
extensions/yaml/package.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"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"],
|
||||
"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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user