Handle multiple target events before commit resume
[deliverable/binutils-gdb.git] / .clang-format
1 ---
2 Language: Cpp
3 # BasedOnStyle: GNU
4 AccessModifierOffset: -2
5 AlignAfterOpenBracket: Align
6 AlignConsecutiveMacros: false
7 AlignConsecutiveAssignments: false
8 AlignConsecutiveDeclarations: false
9 AlignEscapedNewlines: Right
10 AlignOperands: true
11 AlignTrailingComments: true
12 AllowAllArgumentsOnNextLine: true
13 AllowAllConstructorInitializersOnNextLine: true
14 AllowAllParametersOfDeclarationOnNextLine: true
15 AllowShortBlocksOnASingleLine: Never
16 AllowShortCaseLabelsOnASingleLine: false
17 AllowShortFunctionsOnASingleLine: All
18 AllowShortLambdasOnASingleLine: All
19 AllowShortIfStatementsOnASingleLine: Never
20 AllowShortLoopsOnASingleLine: false
21 AlwaysBreakAfterDefinitionReturnType: All
22 AlwaysBreakAfterReturnType: AllDefinitions
23 AlwaysBreakBeforeMultilineStrings: false
24 AlwaysBreakTemplateDeclarations: MultiLine
25 BinPackArguments: true
26 BinPackParameters: true
27 BreakBeforeBraces: Custom
28 BraceWrapping:
29 AfterCaseLabel: true
30 AfterClass: true
31 AfterControlStatement: true
32 AfterEnum: true
33 AfterFunction: true
34 AfterNamespace: true
35 AfterObjCDeclaration: true
36 AfterStruct: true
37 AfterUnion: true
38 AfterExternBlock: false
39 BeforeCatch: true
40 BeforeElse: true
41 IndentBraces: true
42 SplitEmptyFunction: true
43 SplitEmptyRecord: true
44 SplitEmptyNamespace: true
45 BreakBeforeBinaryOperators: All
46 BreakBeforeInheritanceComma: false
47 BreakInheritanceList: BeforeColon
48 BreakBeforeTernaryOperators: true
49 BreakConstructorInitializersBeforeComma: false
50 BreakConstructorInitializers: BeforeColon
51 BreakAfterJavaFieldAnnotations: false
52 BreakStringLiterals: true
53 ColumnLimit: 79
54 CommentPragmas: '^ IWYU pragma:'
55 CompactNamespaces: false
56 ConstructorInitializerAllOnOneLineOrOnePerLine: false
57 ConstructorInitializerIndentWidth: 4
58 ContinuationIndentWidth: 4
59 Cpp11BracedListStyle: false
60 DerivePointerAlignment: false
61 DisableFormat: false
62 ExperimentalAutoDetectBinPacking: false
63 FixNamespaceComments: false
64 ForEachMacros:
65 - foreach
66 - Q_FOREACH
67 - BOOST_FOREACH
68 IncludeBlocks: Preserve
69 IncludeCategories:
70 - Regex: '^"(llvm|llvm-c|clang|clang-c)/'
71 Priority: 2
72 - Regex: '^(<|"(gtest|gmock|isl|json)/)'
73 Priority: 3
74 - Regex: '.*'
75 Priority: 1
76 IncludeIsMainRegex: '(Test)?$'
77 IndentCaseLabels: false
78 IndentPPDirectives: None
79 IndentWidth: 2
80 IndentWrappedFunctionNames: false
81 JavaScriptQuotes: Leave
82 JavaScriptWrapImports: true
83 KeepEmptyLinesAtTheStartOfBlocks: true
84 MacroBlockBegin: ''
85 MacroBlockEnd: ''
86 MaxEmptyLinesToKeep: 1
87 NamespaceIndentation: None
88 ObjCBinPackProtocolList: Auto
89 ObjCBlockIndentWidth: 2
90 ObjCSpaceAfterProperty: false
91 ObjCSpaceBeforeProtocolList: true
92 PenaltyBreakAssignment: 2
93 PenaltyBreakBeforeFirstCallParameter: 19
94 PenaltyBreakComment: 300
95 PenaltyBreakFirstLessLess: 120
96 PenaltyBreakString: 1000
97 PenaltyBreakTemplateDeclaration: 10
98 PenaltyExcessCharacter: 1000000
99 PenaltyReturnTypeOnItsOwnLine: 60
100 PointerAlignment: Right
101 ReflowComments: true
102 SortIncludes: true
103 SortUsingDeclarations: true
104 SpaceAfterCStyleCast: false
105 SpaceAfterLogicalNot: false
106 SpaceAfterTemplateKeyword: true
107 SpaceBeforeAssignmentOperators: true
108 SpaceBeforeCpp11BracedList: false
109 SpaceBeforeCtorInitializerColon: true
110 SpaceBeforeInheritanceColon: true
111 SpaceBeforeParens: Always
112 SpaceBeforeRangeBasedForLoopColon: true
113 SpaceInEmptyBlock: false
114 SpaceInEmptyParentheses: false
115 SpacesBeforeTrailingComments: 1
116 SpacesInAngles: false
117 SpacesInContainerLiterals: true
118 SpacesInCStyleCastParentheses: false
119 SpacesInParentheses: false
120 SpacesInSquareBrackets: false
121 Standard: Cpp11
122 StatementMacros:
123 - Q_UNUSED
124 - QT_REQUIRE_VERSION
125 TabWidth: 8
126 UseTab: Never
127 ...
128
This page took 0.03245 seconds and 4 git commands to generate.