mirror of
https://github.com/Microsoft/vscode
synced 2024-10-31 07:52:49 +00:00
7a5bca9faf
it should avoid to have "warning XXX: No license field" during yarn build Signed-off-by: Aurélien Pupier <apupier@redhat.com>
30 lines
No EOL
686 B
JSON
30 lines
No EOL
686 B
JSON
{
|
|
"name": "go",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"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
|
|
}
|
|
}
|
|
}
|
|
} |