clang-format: specify bitfield spacing to fit with the existing code
[lttng-tools.git] / .clang-format
1 AccessModifierOffset: -8
2 AlignAfterOpenBracket: Align
3 AlignConsecutiveAssignments: false
4 AlignConsecutiveDeclarations: false
5 AlignConsecutiveMacros: Consecutive
6 AlignEscapedNewlines: Left
7 AlignOperands: false
8 AlignTrailingComments: false
9 AllowAllConstructorInitializersOnNextLine: true
10 AllowShortBlocksOnASingleLine: false
11 AllowShortCaseLabelsOnASingleLine: false
12 AllowShortFunctionsOnASingleLine: None
13 AllowShortIfStatementsOnASingleLine: false
14 AllowShortLoopsOnASingleLine: false
15 AlwaysBreakAfterReturnType: None
16 AlwaysBreakBeforeMultilineStrings: false
17 AlwaysBreakTemplateDeclarations: Yes
18 BinPackArguments: false
19 BinPackParameters: false
20 BitFieldColonSpacing: None
21 BreakBeforeBraces: Custom
22 BreakConstructorInitializers: AfterColon
23 BraceWrapping:
24 AfterControlStatement: false
25 AfterEnum: false
26 AfterFunction: true
27 AfterNamespace: false
28 AfterStruct: false
29 AfterUnion: false
30 AfterExternBlock: false
31 AfterCaseLabel: true
32 BeforeCatch: false
33 BeforeElse: false
34 IndentBraces: false
35 SplitEmptyFunction: true
36 BreakBeforeBinaryOperators: None
37 BreakBeforeTernaryOperators: false
38 BreakConstructorInitializers: AfterColon
39 BreakStringLiterals: false
40 ColumnLimit: 100
41 ConstructorInitializerAllOnOneLineOrOnePerLine: true
42 ConstructorInitializerIndentWidth: 8
43 ContinuationIndentWidth: 8
44 Cpp11BracedListStyle: false
45 DerivePointerAlignment: false
46 DisableFormat: false
47 EmptyLineBeforeAccessModifier: LogicalBlock
48 FixNamespaceComments: true
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
56 IncludeBlocks: Regroup
57 IncludeCategories:
58 - Regex: '".*"'
59 Priority: 0
60 - Regex: '<common/.*>'
61 Priority: 1
62 - Regex: '<lttng/.*>'
63 Priority: 2
64 - Regex: '<vendor/.*>'
65 Priority: 3
66 - Regex: '<.*>'
67 Priority: 9
68
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
78 NamespaceIndentation: None
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
89 ReferenceAlignment: Left
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 ...
This page took 0.032728 seconds and 5 git commands to generate.