From 0d4b0632564744477dba81b1c06e3f0da04f2001 Mon Sep 17 00:00:00 2001 From: 3w36zj6 <52315048+3w36zj6@users.noreply.github.com> Date: Wed, 8 Nov 2023 23:23:58 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=20VS=20Code=E3=81=AE=E8=A8=AD?= =?UTF-8?q?=E5=AE=9A=E3=83=95=E3=82=A1=E3=82=A4=E3=83=AB=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0=20(#12)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 +-- .vscode/extensions.json | 3 +++ .vscode/settings.json | 9 +++++++++ 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json 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 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 +}