From 32ea26cdf1a7c7b44f5dcdb83132ea3cac396ad3 Mon Sep 17 00:00:00 2001 From: Josef Schlehofer Date: Fri, 9 Jan 2026 15:05:45 +0100 Subject: [PATCH] vscode: update editor settings and commit constraints Enable trailing whitespace trimming, insert final newline, and force LF. Configure git input validation to warn if subject exceeds 60 characters or if body lines exceed 75 characters. Signed-off-by: Josef Schlehofer --- .vscode/settings.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 7feba4b7e9c43b..dbebacf32ea718 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,10 @@ { - "git.alwaysSignOff": true -} \ No newline at end of file + "git.alwaysSignOff": true, + "files.trimTrailingWhitespace": true, + "files.insertFinalNewline": true, + "files.trimFinalNewlines": true, + "files.eol": "\n", + "git.inputValidation": true, + "git.inputValidationSubjectLength": 60, + "git.inputValidationLineLength": 75 +}