From c0293d2e488cd55f7819b56ea1213560d69b7fe1 Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Tue, 22 Oct 2024 23:07:12 +0900 Subject: [PATCH] Add EditorConfig to extensions.json 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. --- .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 +}