更新结构

This commit is contained in:
锦恢 2024-09-06 23:46:29 +08:00
parent d90524aa5e
commit 2b455a838d
7 changed files with 73 additions and 6 deletions

4
.gitignore vendored
View File

@ -8,6 +8,4 @@ target/
tests_rtl
log_files
test.txt
.vscode/
test.txt

9
test/client/.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,9 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"dbaeumer.vscode-eslint"
]
}

18
test/client/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,18 @@
// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.2.0",
"configurations": [
{
"type": "extensionHost",
"request": "launch",
"name": "Launch Client",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"outFiles": ["${workspaceRoot}/out/**/*.js"],
"preLaunchTask": {
"type": "npm",
"script": "watch"
}
}
],
}

9
test/client/.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,9 @@
{
"editor.insertSpaces": false,
"tslint.enable": true,
"typescript.tsc.autoDetect": "off",
"typescript.preferences.quoteStyle": "single",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
}
}

33
test/client/.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,33 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "compile",
"group": "build",
"presentation": {
"panel": "dedicated",
"reveal": "never"
},
"problemMatcher": [
"$tsc"
]
},
{
"type": "npm",
"script": "watch",
"isBackground": true,
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"panel": "dedicated",
"reveal": "never"
},
"problemMatcher": [
"$tsc-watch"
]
}
]
}

View File

@ -16,7 +16,7 @@
],
"repository": {
"type": "git",
"url": "https://github.com/vivekmalneedi/veridian"
"url": "https://github.com/Digital-EDA/digital-lsp-server"
},
"activationEvents": [
"onLanguage:systemverilog",

View File

@ -37,8 +37,8 @@ export function activate(context: ExtensionContext) {
// Create the language client and start the client.
client = new LanguageClient(
"veridian",
"veridian",
"Digital LSP",
"Digital LSP",
serverOptions,
clientOptions
);