aboutsummaryrefslogtreecommitdiff
path: root/.clang-format
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2026-06-17 11:17:59 +0200
committerFelix Morgner <felix.morgner@gmail.com>2026-06-17 17:52:24 +0200
commite38520f3493a37d500adbca2704e1837bfdc488f (patch)
treec815f9f8d0f29595bc66bf0693b1e053dbb610cd /.clang-format
parent6e05501e8786f651fbf871c414c50573e5fecfb8 (diff)
downloadttwhy-e38520f3493a37d500adbca2704e1837bfdc488f.tar.xz
ttwhy-e38520f3493a37d500adbca2704e1837bfdc488f.zip
app: implement simple echo
Diffstat (limited to '.clang-format')
-rw-r--r--.clang-format10
1 files changed, 6 insertions, 4 deletions
diff --git a/.clang-format b/.clang-format
index 48fb8b3..3bbbb4a 100644
--- a/.clang-format
+++ b/.clang-format
@@ -55,12 +55,14 @@ DerivePointerAlignment: "false"
FixNamespaceComments: "true"
IncludeBlocks: Regroup
IncludeCategories:
- # Project Headers
- - Regex: 'ttwhy/[[:alnum:]._\/]+\.hpp'
- Priority: 100
# Standard Headers
- - Regex: '<[[:alnum:]._]+>'
+ - Regex: '(asio|asio/.*)\.hpp'
+ Priority: 500
+ # Standard Headers
+ - Regex: '[[:alnum:]._]+.h'
Priority: 900
+ - Regex: '[[:alnum:]._]+'
+ Priority: 910
# Fallback
- Regex: '.*'
Priority: 800