1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-16 19:17:58 -05:00

Use negative priorities to avoid special-casing the self-include

This commit is contained in:
Yuri Kunde Schlesner
2016-09-20 23:52:38 -07:00
parent ebdae19fd2
commit 84fbbe2629
164 changed files with 170 additions and 168 deletions

View File

@@ -47,13 +47,15 @@ DisableFormat: false
ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
IncludeCategories:
- Regex: '^\<[wW]indows.h\>'
Priority: 1
Priority: -3
- Regex: '^\<(boost|catch|dynarmic|glad|inih|nihstro)/'
Priority: 3
Priority: -1
- Regex: '^\<(SDL|SoundTouch|Q)'
Priority: 3
Priority: -1
- Regex: '^\<'
Priority: 2
Priority: -2
- Regex: '^\"'
Priority: 0
IndentCaseLabels: false
IndentWidth: 4
IndentWrappedFunctionNames: false