Skip to content

Commit

Permalink
Merge pull request #1 from UniMagic-VRC/feat/vscode-ext
Browse files Browse the repository at this point in the history
VSCode用の設定ファイルを追加
  • Loading branch information
o-tr authored Oct 20, 2024
2 parents e458975 + c4b81ba commit be010e8
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"recommendations": [
"esbenp.prettier-vscode",
"MS-CEINTL.vscode-language-pack-ja",
"yzhang.markdown-all-in-one",
"mhutchie.git-graph"
]
}
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "依存関係のインストール",
"runtimeExecutable": "npm",
"runtimeArgs": ["install"]
},
{
"type": "node",
"request": "launch",
"name": "Docusaurusを起動",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "start"]
}
]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}

0 comments on commit be010e8

Please sign in to comment.