diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2025-10-30 15:59:48 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2025-10-30 15:59:48 +0100 |
| commit | 78f0df1cf849af8b0ade40a8ebcffd7fb53635cb (patch) | |
| tree | 1ceab6b4f2f518a32da5c12d0939637c7fbdd7e7 /.clang-format | |
| parent | 5e9b7dd3dbc194ffa583e9efaab1aef1b6792d97 (diff) | |
| download | teachos-78f0df1cf849af8b0ade40a8ebcffd7fb53635cb.tar.xz teachos-78f0df1cf849af8b0ade40a8ebcffd7fb53635cb.zip | |
libs: begin ELF support implementation
Diffstat (limited to '.clang-format')
| -rw-r--r-- | .clang-format | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.clang-format b/.clang-format index 6d3fa9d..a47e396 100644 --- a/.clang-format +++ b/.clang-format @@ -55,13 +55,15 @@ DerivePointerAlignment: "false" FixNamespaceComments: "true" IncludeBlocks: Regroup IncludeCategories: - - Regex: kapi/[[:alnum:]._\/]+\.hpp + - Regex: 'kapi/[[:alnum:]._\/]+\.hpp' Priority: 100 - - Regex: x86_64/[[:alnum:]._\/]+\.hpp + - Regex: 'x86_64/[[:alnum:]._\/]+\.hpp' Priority: 110 - - Regex: "[[:alnum:]._\\/]+\\.hpp" + - Regex: '"[[:alnum:]._\/]+\.hpp"' Priority: 300 - - Regex: <[[:alnum:]._]+(?!\.(h|hpp))> + - Regex: '<[[:alnum:]._\/]+\.hpp>' + Priority: 600 + - Regex: '<[[:alnum:]._]+(?!\.(h|hpp))>' Priority: 900 IndentCaseLabels: "true" IndentPPDirectives: None |
