From b2a5c4902b0148e37341c788137cd39ca859c2e3 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Tue, 1 Apr 2025 14:21:22 +0200 Subject: [PATCH] Normalize all files to LF line endings --- .vscode/extensions.json | 3 ++- .vscode/settings.json | 8 +++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 1949e6fc5..cbdc210f0 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -2,7 +2,8 @@ "recommendations": [ "bmalehorn.shell-syntax", "timonwong.shellcheck", - "foxundermoon.shell-format" + "foxundermoon.shell-format", + "editorconfig.editorconfig" ], "unwantedRecommendations": [] } diff --git a/.vscode/settings.json b/.vscode/settings.json index be834d99a..72ae89602 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,11 @@ { "files.associations": { "*.func": "shellscript" + }, + "files.eol": "\n", + "files.insertFinalNewline": true, + "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.fixAll": true } -} \ No newline at end of file +}