blob: 977ed2dbf00382efdf36a52330147e56ae465096 [file] [log] [blame]
Klement Sekeradc15be22017-06-12 06:49:33 +02001---
2AlignEscapedNewlinesLeft: true
3AlignTrailingComments: true
4AllowAllParametersOfDeclarationOnNextLine: true
5AllowShortIfStatementsOnASingleLine: false
6AllowShortLoopsOnASingleLine: false
7AllowShortFunctionsOnASingleLine: false
8AlwaysBreakBeforeMultilineStrings: false
9BreakBeforeBinaryOperators: false
10BreakBeforeTernaryOperators: true
11BinPackParameters: true
12BreakBeforeBraces: GNU
13ColumnLimit: 79
14IndentCaseLabels: false
15MaxEmptyLinesToKeep: 1
16PenaltyBreakBeforeFirstCallParameter: 19
17PenaltyBreakComment: 60
18PenaltyBreakString: 1000
19PenaltyBreakFirstLessLess: 120
20PenaltyExcessCharacter: 1000000
21PenaltyReturnTypeOnItsOwnLine: 60
22PointerBindsToType: false
23SpaceBeforeAssignmentOperators: true
24SpaceBeforeParens: Always
25SpacesBeforeTrailingComments: 1
26SpacesInParentheses: false
27SpaceInEmptyParentheses: false
28SpacesInCStyleCastParentheses: false
29SpaceAfterControlStatementKeyword: true
30Cpp11BracedListStyle: true
31Standard: Cpp11
32SortIncludes: false
33IndentWidth: 2
34TabWidth: 4
35UseTab: Never
36IndentFunctionDeclarationAfterType: false
37ContinuationIndentWidth: 4
38...