From 888bd3d53b4df900ad8cca4eac499cc981bea8ef Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Mon, 28 Oct 2024 18:10:14 +0900 Subject: [PATCH] Add EditorConfig to extensions.json (#6697) Adding the EditorConfig extension to recommended extensions will help ensure consistent code formatting. It'll automatically run and read from the `.editorconfig` file in the project root. Co-authored-by: Alexey Umanskiy --- .vscode/extensions.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index bdeb4c8c09..2a879e74d6 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -2,8 +2,9 @@ "recommendations": [ "nrwl.angular-console", "angular.ng-template", + "EditorConfig.EditorConfig", "ms-vscode.vscode-typescript-tslint-plugin", "esbenp.prettier-vscode", "firsttris.vscode-jest-runner" ] -} \ No newline at end of file +}