Skip to content

Commit

Permalink
Merge pull request #18 from uros-5/nodejs
Browse files Browse the repository at this point in the history
init jinja-lsp-nodejs
  • Loading branch information
uros-5 authored May 30, 2024
2 parents 01f010b + 65cb596 commit 45887bc
Show file tree
Hide file tree
Showing 56 changed files with 5,664 additions and 469 deletions.
133 changes: 123 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ resolver = "2"
members = [
"jinja-lsp-queries",
"jinja-lsp",
"jinja-lsp-nodejs"
]

[profile.dev]
Expand Down
5 changes: 2 additions & 3 deletions editors/code/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@
{
"version": "0.2.0",
"configurations": [

{
"type": "extensionHost",
"request": "launch",
"name": "Launch Client",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
"--extensionDevelopmentPath=${workspaceRoot}"
],
"outFiles": [
"${workspaceRoot}/client/out/**/*.js"
Expand Down Expand Up @@ -53,4 +52,4 @@
]
}
]
}
}
24 changes: 12 additions & 12 deletions editors/code/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off",
"files.associations": {
"*.jinja": "jinja-html"
}
}
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off",
"files.associations": {
"*.yaml": "yaml"
}
}
Loading

0 comments on commit 45887bc

Please sign in to comment.