From 1a5e1b25a2cbcbd048011a902b6af1a3bbf6f5a7 Mon Sep 17 00:00:00 2001 From: Vasilii Polikarpov <126792224+vpolikarpov-akvelon@users.noreply.github.com> Date: Wed, 20 Sep 2023 18:58:26 +0200 Subject: [PATCH] Update vscode configuration (#8346) --- .vscode/settings.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index dd30ae4c0..f0ce6b6ac 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,6 @@ { + "files.trimFinalNewlines": true, + "files.insertFinalNewline": true, "powershell.codeFormatting.addWhitespaceAroundPipe": true, "powershell.codeFormatting.alignPropertyValuePairs": true, "powershell.codeFormatting.autoCorrectAliases": true, @@ -15,6 +17,9 @@ "powershell.codeFormatting.whitespaceBetweenParameters": true, "powershell.codeFormatting.whitespaceInsideBrace": true, "shellcheck.exclude": [ - "SC1091" + "SC1090","SC2096" + ], + "shellcheck.customArgs": [ + "-x" ] -} \ No newline at end of file +}