diff options
author | dotjpg3141 <dotjpg3141@posteo.de> | 2022-03-06 20:07:59 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-07 11:01:27 +0100 |
commit | 24a98b888a292e8075a2f7be19f2dfff1cd78949 (patch) | |
tree | dedb3d4e0f55471636e29dc4bc4a2347e29e8fd0 /Documentation | |
parent | 62ffe67a9f5b963682dcc32bb3249da3004a9447 (diff) | |
download | serenity-24a98b888a292e8075a2f7be19f2dfff1cd78949.zip |
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
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/VSCodeConfiguration.md | 8 |
1 files changed, 7 insertions, 1 deletions
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 } ``` |