mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
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
This commit is contained in:
parent
62ffe67a9f
commit
24a98b888a
Notes:
sideshowbarker
2024-07-17 17:50:09 +09:00
Author: https://github.com/dotjpg3141 🔰 Commit: https://github.com/SerenityOS/serenity/commit/24a98b888a Pull-request: https://github.com/SerenityOS/serenity/pull/12913
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue