From 24a98b888a292e8075a2f7be19f2dfff1cd78949 Mon Sep 17 00:00:00 2001 From: dotjpg3141 Date: Sun, 6 Mar 2022 20:07:59 +0100 Subject: [PATCH] Documentation: Improve VS Code settings - Set commit message length to 72 according to CONTRIBUTING.md - Format trailing new lines according to check-newlines-at-eof.py --- Documentation/VSCodeConfiguration.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Documentation/VSCodeConfiguration.md b/Documentation/VSCodeConfiguration.md index 9a1e2d3b7b..a2db2b646b 100644 --- a/Documentation/VSCodeConfiguration.md +++ b/Documentation/VSCodeConfiguration.md @@ -125,7 +125,13 @@ These belong in the `.vscode/settings.json` of Serenity. "C_Cpp.clang_format_style": "file", // Tab settings "editor.tabSize": 4, - "editor.useTabStops": false + "editor.useTabStops": false, + // format trailing new lines + "files.trimFinalNewlines": true, + "files.insertFinalNewline": true, + // git commit message length + "git.inputValidationLength": 72, + "git.inputValidationSubjectLength": 72 } ```