From f1cd7e89db5386955389a1a6c0702596e426f843 Mon Sep 17 00:00:00 2001 From: valadaptive Date: Sun, 10 Dec 2023 21:39:02 -0500 Subject: [PATCH 1/2] Recommend the ESLint extension to VSCode users --- .gitignore | 3 ++- .vscode/extensions.json | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .vscode/extensions.json diff --git a/.gitignore b/.gitignore index ae782859a..de17c931f 100644 --- a/.gitignore +++ b/.gitignore @@ -27,7 +27,8 @@ public/stats.json public/settings.json /thumbnails whitelist.txt -.vscode +.vscode/** +!.vscode/extensions.json .idea/ secrets.json /dist diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 000000000..cd2bc3085 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,13 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. + // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp + + // List of extensions which should be recommended for users of this workspace. + "recommendations": [ + "dbaeumer.vscode-eslint" + ], + // List of extensions recommended by VS Code that should not be recommended for users of this workspace. + "unwantedRecommendations": [ + + ] +} From 3b33c3e51a2fc1529204290451470dc26d193e77 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Mon, 11 Dec 2023 17:17:04 +0200 Subject: [PATCH 2/2] Add editorconfig --- .vscode/extensions.json | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index cd2bc3085..1ac1c6e4f 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,13 +1,11 @@ { - // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. - // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp - - // List of extensions which should be recommended for users of this workspace. - "recommendations": [ - "dbaeumer.vscode-eslint" - ], - // List of extensions recommended by VS Code that should not be recommended for users of this workspace. - "unwantedRecommendations": [ - - ] + // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. + // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp + // List of extensions which should be recommended for users of this workspace. + "recommendations": [ + "dbaeumer.vscode-eslint", + "EditorConfig.EditorConfig" + ], + // List of extensions recommended by VS Code that should not be recommended for users of this workspace. + "unwantedRecommendations": [] }