Merge pull request #40 from McSinyx/travis
[alure.git] / .clang-format
blobbcf7e74a0cc2456e31cbda02ff6d12faa051fda5
1 ---
2 BasedOnStyle: WebKit
3 AccessModifierOffset: '-4'
4 AlignConsecutiveDeclarations: 'false'
5 AlignEscapedNewlinesLeft: 'false'
6 AlignOperands: 'true'
7 AlignTrailingComments: 'false'
8 AllowAllParametersOfDeclarationOnNextLine: 'true'
9 AllowShortBlocksOnASingleLine: 'false'
10 AllowShortCaseLabelsOnASingleLine: 'true'
11 AllowShortFunctionsOnASingleLine: All
12 AllowShortIfStatementsOnASingleLine: 'true'
13 AlwaysBreakAfterReturnType: None
14 AlwaysBreakBeforeMultilineStrings: 'true'
15 AlwaysBreakTemplateDeclarations: 'true'
16 BinPackArguments: 'true'
17 BinPackParameters: 'true'
18 BreakBeforeBinaryOperators: None
19 BreakBeforeBraces: Custom
20 BraceWrapping:
21   AfterClass: 'false'
22   AfterControlStatement: 'true'
23   AfterEnum: 'false'
24   AfterFunction: 'true'
25   AfterNamespace: 'false'
26   AfterStruct: 'false'
27   AfterUnion: 'false'
28   BeforeCatch: 'true'
29   BeforeElse: 'true'
30   IndentBraces: 'false'
31 BreakConstructorInitializersBeforeComma: 'true'
32 ColumnLimit: '99'
33 ConstructorInitializerAllOnOneLineOrOnePerLine: 'false'
34 ConstructorInitializerIndentWidth: '2'
35 ContinuationIndentWidth: '4'
36 Cpp11BracedListStyle: 'true'
37 DerivePointerAlignment: 'true'
38 IndentCaseLabels: 'true'
39 IndentWidth: '4'
40 KeepEmptyLinesAtTheStartOfBlocks: 'true'
41 Language: Cpp
42 MaxEmptyLinesToKeep: '2'
43 NamespaceIndentation: Inner
44 PointerAlignment: Right
45 ReflowComments: 'true'
46 SortIncludes: 'true'
47 SpaceAfterCStyleCast: 'false'
48 SpaceBeforeAssignmentOperators: 'true'
49 SpaceBeforeParens: Never
50 SpaceInEmptyParentheses: 'false'
51 SpacesBeforeTrailingComments: '1'
52 SpacesInAngles: 'false'
53 SpacesInCStyleCastParentheses: 'false'
54 SpacesInParentheses: 'false'
55 SpacesInSquareBrackets: 'false'
56 Standard: Cpp14
57 TabWidth: '4'
58 UseTab: Never
60 ...