vscode/extensions/vb/package.json
RedCMD 0a71ec927c
Change lowercase l to uppercase L. asp-vb-net.tmLanguage.json (#201981)
* Change lowercase `l` to uppercase `L`. `asp-vb-net.tmLanguage.json`

`.tmLanguage.json` is the common file extension for JSON TextMate
while `vb` is currently using `.tmlanguage.json`

* Rename file.

* Remove EOF newline >:(

---------

Co-authored-by: Martin Aeschlimann <martinae@microsoft.com>
2024-01-08 22:10:59 +00:00

51 lines
1.1 KiB
JSON

{
"name": "vb",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.0.0",
"publisher": "vscode",
"license": "MIT",
"engines": {
"vscode": "*"
},
"scripts": {
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin textmate/asp.vb.net.tmbundle Syntaxes/ASP%20VB.net.plist ./syntaxes/asp-vb-net.tmLanguage.json"
},
"contributes": {
"languages": [
{
"id": "vb",
"extensions": [
".vb",
".brs",
".vbs",
".bas",
".vba"
],
"aliases": [
"Visual Basic",
"vb"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "vb",
"scopeName": "source.asp.vb.net",
"path": "./syntaxes/asp-vb-net.tmLanguage.json"
}
],
"snippets": [
{
"language": "vb",
"path": "./snippets/vb.code-snippets"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode.git"
}
}