]> git.jsancho.org Git - lugaru.git/blob - .clang-format
Friends fight with true enemies, before they attacked player but hurting enemies
[lugaru.git] / .clang-format
1 ---
2 BasedOnStyle:  Mozilla
3 ---
4 Language:                               Cpp
5 AccessModifierOffset:                   -4
6 AllowShortIfStatementsOnASingleLine:    false
7 AlwaysBreakAfterDefinitionReturnType:   None
8 AlwaysBreakAfterReturnType:             None
9 AlignAfterOpenBracket:                  true
10 AlignOperands:                          true
11 ColumnLimit:                            0
12 ConstructorInitializerIndentWidth:      4
13 ContinuationIndentWidth:                4
14 IndentWidth:                            4
15 SpacesInCStyleCastParentheses:          false
16 Standard:                               Cpp11
17 BreakBeforeBraces:                      Custom
18 BraceWrapping:
19   AfterClass:      true
20   AfterControlStatement: false
21   AfterEnum:       true
22   AfterFunction:   true
23   AfterNamespace:  true
24   AfterObjCDeclaration: false
25   AfterStruct:     true
26   AfterUnion:      true
27   BeforeCatch:     false
28   BeforeElse:      false
29   IndentBraces:    false
30 ...