This commit is contained in:
Mars 2025-05-13 01:48:08 -04:00
parent 009556cabf
commit 3d1d344ec1
Signed by: pupbrained
GPG key ID: 0FF5B8826803F895
14 changed files with 383 additions and 196 deletions

View file

@ -23,16 +23,22 @@ ContinuationIndentWidth: 2
Cpp11BracedListStyle: false
IncludeBlocks: Regroup
IncludeCategories:
# 1. System headers (<iostream>, <vector>, etc.)
- Regex: '^<.*>$'
Priority: 1
# 2. Project headers starting with "src/"
- Regex: '^"src/.*"'
- Regex: '^"Config/.*"'
Priority: 2
# 3. All other quoted headers (including same-directory like "system_data.h")
# This acts as a fallback for quoted includes not matching the above.
- Regex: '^".*"'
- Regex: '^"Core/.*"'
Priority: 3
- Regex: '^"Services/.*"'
Priority: 4
- Regex: '^"UI/.*"'
Priority: 5
- Regex: '^"Util/.*"'
Priority: 6
- Regex: '^"Wrappers/.*"'
Priority: 7
- Regex: '^".*"$'
Priority: 8
IndentExternBlock: Indent
IndentPPDirectives: BeforeHash
NamespaceIndentation: All