From ad0e217c36a1483cc6f9d6b54ce6e1ab51e46f95 Mon Sep 17 00:00:00 2001 From: Alexander Trost Date: Fri, 14 Jul 2023 18:38:09 +0200 Subject: [PATCH] chore: add editorconfig to vscode recommended extensions Signed-off-by: Alexander Trost --- .vscode/extensions.json | 9 +++++++++ README.md | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .vscode/extensions.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..8a479a5 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,9 @@ +{ + // 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": ["EditorConfig.EditorConfig"], + // List of extensions recommended by VSCodium that should not be recommended for users of this workspace. + "unwantedRecommendations": [] +} diff --git a/README.md b/README.md index a0d4dc8..742ea5f 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,6 @@ The packaged images are based of CentOS. The rebuild image is then pushed to ## Contributing -We recommend using the [Editorconfig plugin](https://editorconfig.org/#download) to auto configure your editor for the right indentation in this repo. +We recommend using the [Editorconfig plugin](https://editorconfig.org/#download) to auto configure your editor for the right indentation in this repo. If you are using VSCode/Codium, it will be automatically recommended to you when you open the repository. Please open a pull request for any changes you want to make in this repository.