Skip to content

Commit ae6487f

Browse files
committed
Initial commit
0 parents  commit ae6487f

File tree

8 files changed

+120
-0
lines changed

8 files changed

+120
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Set default behavior to automatically normalize line endings.
2+
* text=auto

.github/media/logo.png

6.33 KB
Loading

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
*.vsix
3+
.DS_Store

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// A launch configuration that launches the extension inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
{
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"args": [
13+
"--extensionDevelopmentPath=${workspaceFolder}"
14+
]
15+
}
16+
]
17+
}

.vscodeignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.vscode/**
2+
.vscode-test/**
3+
.gitignore
4+
vsc-extension-quickstart.md

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Nuxtr <https://nuxtr.com>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<br />
2+
3+
<div align="center">
4+
<img src=".github/media/logo.png" alt="Logo" width="80" height="80">
5+
6+
<h3 align="center">Nuxt Extension Pack</h3>
7+
8+
<p align="center">
9+
A collection of extensions for working with Nuxt/Vue 3 Framework in VS Code.
10+
</p>
11+
12+
<p align="center">
13+
<a target="_blank" href="https://github.com/nuxtrdev/nuxt-vscode-extentions/discussions/new?category=extension-suggestions">
14+
<strong>Suggest Extensions</strong> »
15+
</a>
16+
</p>
17+
</div>
18+
19+
<br>
20+
21+
22+
## Included Extensions
23+
24+
Please, refer to each extension's documentation for more information and proper configuration.
25+
26+
#### Official Extensions
27+
- [Volar](https://marketplace.visualstudio.com/items?itemName=vue.volar)
28+
- [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=vue.vscode-typescript-vue-plugin)
29+
- [MDC - Markdown Components](https://marketplace.visualstudio.com/items?itemName=Nuxt.mdc)
30+
31+
#### Community Extensions
32+
- [Nuxtr](https://marketplace.visualstudio.com/items?itemName=Nuxtr.nuxtr-vscode)
33+
- [Goto definition alias](https://marketplace.visualstudio.com/items?itemName=antfu.goto-alias)
34+
35+
36+
<br>
37+
<br>
38+
39+
Happy Nuxting! 🚀

package.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "nuxt-vscode-extentions",
3+
"displayName": "Nuxt Extension Pack",
4+
"description": "A collection of extensions for working with Nuxt/Vue 3 Framework in VS Code.",
5+
"version": "0.0.1",
6+
"engines": {
7+
"vscode": "^1.82.0"
8+
},
9+
"license": "MIT",
10+
"galleryBanner": {
11+
"color": "#00DC82",
12+
"theme": "light"
13+
},
14+
"keywords": [
15+
"vue",
16+
"nuxt",
17+
"vuejs",
18+
"nuxtjs",
19+
"Extension Pack",
20+
"Nuxt Extension Pack"
21+
],
22+
"repository": "https://github.com/nuxtrdev/nuxt-vscode-extentions",
23+
"homepage": "https://nuxtr.com",
24+
"categories": [
25+
"Extension Packs"
26+
],
27+
"extensionPack": [
28+
"antfu.goto-alias",
29+
"Nuxt.mdc",
30+
"Nuxtr.nuxtr-vscode",
31+
"Vue.volar",
32+
"Vue.vscode-typescript-vue-plugin"
33+
]
34+
}

0 commit comments

Comments
 (0)