Meta: Switch to clang-format-19 as the standard formatter

This commit is contained in:
Timothy Flynn 2024-12-27 18:40:32 -05:00 committed by Tim Flynn
commit 66732d2203
Notes: github-actions[bot] 2024-12-28 13:40:44 +00:00
5 changed files with 14 additions and 14 deletions

View file

@ -2,7 +2,7 @@
For low-level styling (spaces, parentheses, brace placement, etc), all code should follow the format specified in `.clang-format` in the project root.
**Important: Make sure you use `clang-format` version 18!**
**Important: Make sure you use `clang-format` version 19!**
This document describes the coding style used for C++ code in the Ladybird Browser project. All new code should conform to this style.
@ -505,7 +505,7 @@ wrapping or to insert necessary punctuation such as adding `**` when a number is
done using elements like `<sup>` which do not appear in the copied text.
Please wrap long comments onto multiple lines so that they are easier to read. Generally, 120 characters is a good width
to aim for.
to aim for.
Use FIXME: (without attribution) to denote items that need to be addressed in the future.
TODO: (without attribution) is also permitted.