From 514679658a8eb6b7edde5fb1c103b17915b7cf0a Mon Sep 17 00:00:00 2001 From: seiya_tagami Date: Tue, 8 Aug 2023 00:19:35 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=E3=83=97=E3=83=AB=E3=83=AA=E3=82=AF?= =?UTF-8?q?=E3=83=86=E3=83=B3=E3=83=97=E3=83=AC=E3=83=BC=E3=83=88=E3=81=AE?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0=E3=81=A8.vscode=E3=81=AE=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/pull_request_template.md | 17 +++++++++++++++++ .gitignore | 1 - .vscode/extentions.json | 3 +++ .vscode/settings.json | 5 +++++ 4 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 .github/pull_request_template.md create mode 100644 .vscode/extentions.json create mode 100644 .vscode/settings.json diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..e8d9ca9 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,17 @@ +## 概要 + +このセクションでは、この PR の目的と概要を簡潔に説明してください。 + +## 変更点 + +このセクションでは、具体的な変更点や修正箇所を箇条書きでリストアップしてください。 + +- 変更点 1 +- 変更点 2 +- 変更点 3 + +## 関連 Issue + +このセクションでは、この PR が関連する Issue やタスクをリンクしてください。以下のように記述します。 + +- 関連 Issue: #123 diff --git a/.gitignore b/.gitignore index a547bf3..cb0da3d 100644 --- a/.gitignore +++ b/.gitignore @@ -13,7 +13,6 @@ dist-ssr *.local # Editor directories and files -.vscode/* !.vscode/extensions.json .idea .DS_Store diff --git a/.vscode/extentions.json b/.vscode/extentions.json new file mode 100644 index 0000000..c83e263 --- /dev/null +++ b/.vscode/extentions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["esbenp.prettier-vscode"] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..36cfc45 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.tabSize": 2, + "editor.formatOnSave": true +}