From 17cd07dc42625c8c4282fdf15ce2c60c091e858d Mon Sep 17 00:00:00 2001 From: Iain Sproat <68657+iainsproat@users.noreply.github.com> Date: Thu, 18 Aug 2022 15:39:55 +0100 Subject: [PATCH] style(vscode workspace): set EOL character to line feed (LF) symbol (#920) To reduce likelihood of CRLF characters being incorporated, we wish to configure the project in VSCode to use LF only. --- workspace.code-workspace | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workspace.code-workspace b/workspace.code-workspace index 4b6b0b763..e1fcf7e2b 100644 --- a/workspace.code-workspace +++ b/workspace.code-workspace @@ -59,7 +59,8 @@ "search.useParentIgnoreFiles": true, "[html]": { "editor.defaultFormatter": "esbenp.prettier-vscode" - } + }, + "files.eol": "\n" }, "extensions": { // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.