Commit | Line | Data |
---|---|---|
47aa4f7b | 1 | AccessModifierOffset: -8 |
20364ea3 | 2 | AlignAfterOpenBracket: Align |
3aa937ab JG |
3 | AlignConsecutiveAssignments: false |
4 | AlignConsecutiveDeclarations: false | |
20364ea3 | 5 | AlignConsecutiveMacros: Consecutive |
3aa937ab | 6 | AlignEscapedNewlines: Left |
05ba77bc | 7 | AlignOperands: false |
3aa937ab | 8 | AlignTrailingComments: false |
47aa4f7b | 9 | AllowAllConstructorInitializersOnNextLine: true |
3aa937ab JG |
10 | AllowShortBlocksOnASingleLine: false |
11 | AllowShortCaseLabelsOnASingleLine: false | |
12 | AllowShortFunctionsOnASingleLine: None | |
13 | AllowShortIfStatementsOnASingleLine: false | |
14 | AllowShortLoopsOnASingleLine: false | |
15 | AlwaysBreakAfterReturnType: None | |
16 | AlwaysBreakBeforeMultilineStrings: false | |
47aa4f7b | 17 | AlwaysBreakTemplateDeclarations: Yes |
20364ea3 | 18 | BinPackArguments: false |
3aa937ab | 19 | BinPackParameters: false |
f250b40e | 20 | BitFieldColonSpacing: None |
1847c92b | 21 | BreakBeforeBraces: Custom |
47aa4f7b | 22 | BreakConstructorInitializers: AfterColon |
3aa937ab JG |
23 | BraceWrapping: |
24 | AfterControlStatement: false | |
25 | AfterEnum: false | |
26 | AfterFunction: true | |
47aa4f7b | 27 | AfterNamespace: false |
3aa937ab JG |
28 | AfterStruct: false |
29 | AfterUnion: false | |
30 | AfterExternBlock: false | |
1847c92b | 31 | AfterCaseLabel: true |
3aa937ab JG |
32 | BeforeCatch: false |
33 | BeforeElse: false | |
34 | IndentBraces: false | |
35 | SplitEmptyFunction: true | |
36 | BreakBeforeBinaryOperators: None | |
3aa937ab | 37 | BreakBeforeTernaryOperators: false |
47aa4f7b | 38 | BreakConstructorInitializers: AfterColon |
3aa937ab | 39 | BreakStringLiterals: false |
47aa4f7b JG |
40 | ColumnLimit: 100 |
41 | ConstructorInitializerAllOnOneLineOrOnePerLine: true | |
42 | ConstructorInitializerIndentWidth: 8 | |
20364ea3 JG |
43 | ContinuationIndentWidth: 8 |
44 | Cpp11BracedListStyle: false | |
3aa937ab JG |
45 | DerivePointerAlignment: false |
46 | DisableFormat: false | |
47aa4f7b | 47 | EmptyLineBeforeAccessModifier: LogicalBlock |
20364ea3 | 48 | FixNamespaceComments: true |
3aa937ab JG |
49 | ForEachMacros: |
50 | - 'cds_lfht_for_each_entry' | |
51 | - 'cds_lfht_for_each_entry_safe' | |
52 | - 'cds_lfht_for_each_duplicate' | |
53 | - 'cds_list_for_each_entry' | |
54 | - 'cds_list_for_each_entry_safe' | |
55 | ||
20364ea3 | 56 | IncludeBlocks: Regroup |
3aa937ab | 57 | IncludeCategories: |
20364ea3 JG |
58 | - Regex: '".*"' |
59 | Priority: 0 | |
60 | - Regex: '<common/.*>' | |
3aa937ab | 61 | Priority: 1 |
20364ea3 JG |
62 | - Regex: '<lttng/.*>' |
63 | Priority: 2 | |
64 | - Regex: '<vendor/.*>' | |
65 | Priority: 3 | |
66 | - Regex: '<.*>' | |
67 | Priority: 9 | |
68 | ||
3aa937ab JG |
69 | IncludeIsMainRegex: '(Test)?$' |
70 | IndentCaseLabels: false | |
71 | IndentPPDirectives: None | |
72 | IndentWidth: 8 | |
73 | IndentWrappedFunctionNames: false | |
74 | KeepEmptyLinesAtTheStartOfBlocks: false | |
75 | MacroBlockBegin: '' | |
76 | MacroBlockEnd: '' | |
77 | MaxEmptyLinesToKeep: 1 | |
47aa4f7b | 78 | NamespaceIndentation: None |
3aa937ab JG |
79 | |
80 | # Taken from git's rules | |
81 | PenaltyBreakAssignment: 10 | |
82 | PenaltyBreakBeforeFirstCallParameter: 30 | |
83 | PenaltyBreakComment: 10 | |
84 | PenaltyBreakString: 10 | |
85 | PenaltyExcessCharacter: 100 | |
86 | PenaltyReturnTypeOnItsOwnLine: 60 | |
87 | ||
88 | PointerAlignment: Right | |
47aa4f7b | 89 | ReferenceAlignment: Left |
3aa937ab JG |
90 | ReflowComments: true |
91 | SortIncludes: true | |
92 | SpaceAfterCStyleCast: true | |
93 | SpaceBeforeAssignmentOperators: true | |
94 | SpaceBeforeParens: ControlStatements | |
95 | SpaceInEmptyParentheses: false | |
96 | SpacesBeforeTrailingComments: 1 | |
97 | SpacesInContainerLiterals: false | |
98 | SpacesInCStyleCastParentheses: false | |
99 | SpacesInParentheses: false | |
100 | SpacesInSquareBrackets: false | |
101 | Standard: Cpp11 | |
102 | TabWidth: 8 | |
103 | UseTab: Always | |
104 | ... |