From ada60b2d9553466c91aeaba443e6dbe1ce6ac2e3 Mon Sep 17 00:00:00 2001 From: 3w36zj6 <52315048+3w36zj6@users.noreply.github.com> Date: Wed, 8 Nov 2023 23:14:39 +0900 Subject: [PATCH 1/2] =?UTF-8?q?`.gitignore`=E3=81=8B=E3=82=89`.vscode/`?= =?UTF-8?q?=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e62d34a..2a23c92 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ -.vscode/ node_modules/ -dist/bundle.js \ No newline at end of file +dist/bundle.js From a763aaf03f7a481d7b25f29961486c27286b373d Mon Sep 17 00:00:00 2001 From: 3w36zj6 <52315048+3w36zj6@users.noreply.github.com> Date: Wed, 8 Nov 2023 23:16:50 +0900 Subject: [PATCH 2/2] =?UTF-8?q?VS=20Code=E3=81=AEFormatter=E3=81=A8Linter?= =?UTF-8?q?=E3=81=AE=E8=A8=AD=E5=AE=9A=E3=81=A8=E6=8E=A8=E5=A5=A8=E6=8B=A1?= =?UTF-8?q?=E5=BC=B5=E6=A9=9F=E8=83=BD=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/extensions.json | 3 +++ .vscode/settings.json | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..d7df89c --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["esbenp.prettier-vscode", "dbaeumer.vscode-eslint"] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..19573a1 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,9 @@ +{ + "[javascript][typescript][json][yaml][toml]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true + }, + "editor.formatOnSave": true +}