From: Josef Schlehofer Date: Fri, 9 Jan 2026 14:05:45 +0000 (+0100) Subject: vscode: update editor formatting and line endings settings X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F23750%2Fhead;p=thirdparty%2Fopenwrt.git vscode: update editor formatting and line endings settings Enable trailing whitespace trimming, insert final newline, and force LF. Signed-off-by: Josef Schlehofer Link: https://github.com/openwrt/openwrt/pull/23750 Signed-off-by: Jonas Jelonek --- diff --git a/.vscode/settings.json b/.vscode/settings.json index b93fa58b76f..fd1d4e77eda 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,7 @@ { - "git.alwaysSignOff": true + "git.alwaysSignOff": true, + "files.trimTrailingWhitespace": true, + "files.insertFinalNewline": true, + "files.trimFinalNewlines": true, + "files.eol": "\n" }