]> git.jsancho.org Git - lugaru.git/blob - .clang-format
Maps: Fix hardcoded usage of FurBW.jpg
[lugaru.git] / .clang-format
1 ---
2 BasedOnStyle:  Mozilla
3 ---
4 Language:                               Cpp
5 AllowShortIfStatementsOnASingleLine:    false
6 AlwaysBreakAfterDefinitionReturnType:   None
7 AlwaysBreakAfterReturnType:             None
8 AlignAfterOpenBracket:                  true
9 AlignOperands:                          true
10 ColumnLimit:                            0
11 ConstructorInitializerIndentWidth:      4
12 ContinuationIndentWidth:                4
13 IndentWidth:                            4
14 SpacesInCStyleCastParentheses:          false
15 Standard:                               Cpp11
16 BreakBeforeBraces:                      Custom
17 BraceWrapping:
18   AfterClass:      true
19   AfterControlStatement: false
20   AfterEnum:       true
21   AfterFunction:   true
22   AfterNamespace:  true
23   AfterObjCDeclaration: false
24   AfterStruct:     true
25   AfterUnion:      true
26   BeforeCatch:     false
27   BeforeElse:      false
28   IndentBraces:    false
29 ...