diff options
author | Linus Groh <mail@linusgroh.de> | 2020-12-30 22:45:54 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-12-31 21:51:00 +0100 |
commit | fb220d567861cf27424e1196702a47fe7e1a0928 (patch) | |
tree | 9b6df08dd181f72e2e5371db6e00cc75d08640df /CONTRIBUTING.md | |
parent | bbe787a0afd51307cdac2c023895c19df31519ca (diff) | |
download | serenity-fb220d567861cf27424e1196702a47fe7e1a0928.zip |
Meta+Docs+CI: Require clang-format >= 11
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e58d47feec..dda484fabd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -34,7 +34,7 @@ Nobody is perfect, and sometimes we mess things up. That said, here are some goo **Do:** * Write in idiomatic Serenity C++20, using the `AK` containers in all code. -* Conform to the project coding style found in [CodingStyle.md](https://github.com/SerenityOS/serenity/blob/master/Documentation/CodingStyle.md). Please use `clang-format` (version 10 or later) to automatically format C++ files. +* Conform to the project coding style found in [CodingStyle.md](https://github.com/SerenityOS/serenity/blob/master/Documentation/CodingStyle.md). Please use `clang-format` (version 11 or later) to automatically format C++ files. * Choose expressive variable, function and class names. Make it as obvious as possible what the code is doing. * Split your changes into separate, atomic commits. * Make sure your commits are rebased on the master branch. |