From 960a169a18f5ff22c6c55399a2188509f422edfa Mon Sep 17 00:00:00 2001 From: Jeff Fisher Date: Thu, 15 Jun 2023 13:51:22 -0500 Subject: [PATCH] [engsys] Address issue with prettier extension (#26205) ### Packages impacted by this PR None - this is a dev dependency fix ### Issues associated with this PR https://github.com/prettier/prettier-vscode/issues/3020 ### Describe the problem that is addressed by this PR Tweak our VS Code settings so that the prettier extension can properly format during development once again. --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 523615289d3b..5f5f7c02c59d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -23,5 +23,6 @@ "git.ignoreLimitWarning": true, "cSpell.words": [ "datalake" - ] + ], + "prettier.prettierPath": "./sdk/core/core-rest-pipeline/node_modules/prettier" }