mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 13:10:43 +00:00
27 lines
No EOL
601 B
JSON
27 lines
No EOL
601 B
JSON
{
|
|
"name": "go",
|
|
"version": "0.1.0",
|
|
"publisher": "vscode",
|
|
"engines": { "vscode": "*" },
|
|
"scripts": {
|
|
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-go grammars/go.cson ./syntaxes/go.tmLanguage.json"
|
|
},
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "go",
|
|
"extensions": [ ".go" ],
|
|
"aliases": [ "Go" ],
|
|
"configuration": "./language-configuration.json"
|
|
}],
|
|
"grammars": [{
|
|
"language": "go",
|
|
"scopeName": "source.go",
|
|
"path": "./syntaxes/go.tmLanguage.json"
|
|
}],
|
|
"configurationDefaults": {
|
|
"[go]": {
|
|
"editor.insertSpaces": false
|
|
}
|
|
}
|
|
}
|
|
} |