blob: 036aa7d76e340d455cf877c37c5184ba98875f8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
BasedOnStyle: LLVM
AllowShortFunctionsOnASingleLine: None
BreakBeforeBraces: Allman
ColumnLimit: 0
UseTab: Never
IndentWidth: 4
TabWidth: 4
AlignAfterOpenBracket: DontAlign
Cpp11BracedListStyle: false
BreakStringLiterals: false
IndentCaseLabels: false
IncludeCategories:
- Regex: '^"gba/types\.h"$'
Priority: -4
- Regex: '^"global\.h"$'
Priority: -3
- Regex: '^"gba/gba\.h"$'
Priority: -2
- Regex: '^"gba/'
Priority: -1
- Regex: '.\*'
Priority: 1
|