From e77c50a35a5a2831ad8f3063debd9f54fa8acaa8 Mon Sep 17 00:00:00 2001 From: Daniel Castillo Date: Wed, 25 Sep 2024 09:57:39 -0400 Subject: [PATCH] initial commit --- .gitattributes | 2 ++ .gitignore | 2 ++ .vscode/launch.json | 17 +++++++++++++++++ .vscodeignore | 4 ++++ package.json | 20 ++++++++++++++++++++ snippets/snippets.code-snippets | 1 + 6 files changed, 46 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .vscode/launch.json create mode 100644 .vscodeignore create mode 100644 package.json create mode 100644 snippets/snippets.code-snippets diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..70e63ff --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Set default behavior to automatically normalize line endings. +* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aeee732 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules +*.vsix diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..0e191b5 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +// A launch configuration that launches the extension inside a new window +// Use IntelliSense to learn about possible attributes. +// Hover to view descriptions of existing attributes. +// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Extension", + "type": "extensionHost", + "request": "launch", + "args": [ + "--extensionDevelopmentPath=${workspaceFolder}" + ] + } + ] +} \ No newline at end of file diff --git a/.vscodeignore b/.vscodeignore new file mode 100644 index 0000000..f369b5e --- /dev/null +++ b/.vscodeignore @@ -0,0 +1,4 @@ +.vscode/** +.vscode-test/** +.gitignore +vsc-extension-quickstart.md diff --git a/package.json b/package.json new file mode 100644 index 0000000..bd2535c --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "nova-js", + "displayName": "Nova.js", + "description": "", + "version": "0.0.1", + "engines": { + "vscode": "^1.93.0" + }, + "categories": [ + "Snippets" + ], + "contributes": { + "snippets": [ + { + "language": "typescript", + "path": "./snippets/snippets.code-snippets" + } + ] + } +} diff --git a/snippets/snippets.code-snippets b/snippets/snippets.code-snippets new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/snippets/snippets.code-snippets @@ -0,0 +1 @@ +{} \ No newline at end of file