|
1 | | -# Generated from CLion C/C++ Code Style settings |
| 1 | +--- |
| 2 | +Language: Cpp |
2 | 3 | BasedOnStyle: LLVM |
3 | | -AccessModifierOffset: -2 |
4 | 4 | AlignAfterOpenBracket: Align |
5 | | -AlignConsecutiveAssignments: None |
6 | | -AlignOperands: Align |
| 5 | +AlignConsecutiveAssignments: |
| 6 | + Enabled: true |
| 7 | + AcrossEmptyLines: false |
| 8 | + AcrossComments: false |
| 9 | +AlignConsecutiveBitFields: |
| 10 | + Enabled: true |
| 11 | + AcrossEmptyLines: false |
| 12 | + AcrossComments: false |
| 13 | +AlignConsecutiveDeclarations: |
| 14 | + Enabled: true |
| 15 | + AcrossEmptyLines: false |
| 16 | + AcrossComments: false |
| 17 | +AlignConsecutiveMacros: |
| 18 | + Enabled: true |
| 19 | + AcrossEmptyLines: true |
| 20 | + AcrossComments: false |
| 21 | +AlignConsecutiveShortCaseStatements: |
| 22 | + Enabled: true |
| 23 | + AcrossEmptyLines: true |
| 24 | + AcrossComments: true |
| 25 | + AlignCaseColons: false |
| 26 | +AlignEscapedNewlines: LeftWithLastLine |
| 27 | +AlignOperands: true |
| 28 | +AlignTrailingComments: |
| 29 | + Kind: Always |
| 30 | + OverEmptyLines: 2 |
7 | 31 | AllowAllArgumentsOnNextLine: false |
8 | 32 | AllowAllConstructorInitializersOnNextLine: false |
9 | 33 | AllowAllParametersOfDeclarationOnNextLine: false |
10 | | -AllowShortBlocksOnASingleLine: Always |
| 34 | +AllowShortBlocksOnASingleLine: Empty |
| 35 | +AllowShortCaseExpressionOnASingleLine: true |
11 | 36 | AllowShortCaseLabelsOnASingleLine: false |
12 | | -AllowShortFunctionsOnASingleLine: All |
13 | | -AllowShortIfStatementsOnASingleLine: Always |
14 | | -AllowShortLambdasOnASingleLine: All |
15 | | -AllowShortLoopsOnASingleLine: true |
16 | | -AlwaysBreakAfterReturnType: None |
| 37 | +AllowShortEnumsOnASingleLine: false |
| 38 | +AllowShortFunctionsOnASingleLine: None |
| 39 | +AllowShortIfStatementsOnASingleLine: Never |
17 | 40 | AlwaysBreakTemplateDeclarations: Yes |
| 41 | +BinPackArguments: true |
18 | 42 | BreakBeforeBraces: Custom |
19 | 43 | BraceWrapping: |
20 | 44 | AfterCaseLabel: false |
21 | 45 | AfterClass: false |
22 | | - AfterControlStatement: Never |
| 46 | + AfterControlStatement: false |
23 | 47 | AfterEnum: false |
24 | 48 | AfterFunction: false |
25 | 49 | AfterNamespace: false |
| 50 | + AfterStruct: false |
26 | 51 | AfterUnion: false |
27 | | - BeforeCatch: false |
| 52 | + AfterExternBlock: false |
| 53 | + BeforeCatch: true |
28 | 54 | BeforeElse: false |
29 | | - IndentBraces: false |
30 | | - SplitEmptyFunction: false |
| 55 | + BeforeLambdaBody: false |
| 56 | + BeforeWhile: false |
| 57 | + SplitEmptyFunction: true |
31 | 58 | SplitEmptyRecord: true |
| 59 | + SplitEmptyNamespace: true |
| 60 | +BracedInitializerIndentWidth: 2 |
32 | 61 | BreakBeforeBinaryOperators: None |
33 | | -BreakBeforeTernaryOperators: true |
34 | | -BreakConstructorInitializers: BeforeColon |
35 | | -BreakInheritanceList: BeforeColon |
36 | | -ColumnLimit: 0 |
37 | | -CompactNamespaces: false |
38 | | -ContinuationIndentWidth: 4 |
39 | | -IndentCaseLabels: true |
| 62 | +BreakConstructorInitializers: AfterColon |
| 63 | +BreakConstructorInitializersBeforeComma: false |
| 64 | +ContinuationIndentWidth: 2 |
| 65 | +ColumnLimit: 120 |
| 66 | +ConstructorInitializerAllOnOneLineOrOnePerLine: false |
| 67 | +Cpp11BracedListStyle: true |
| 68 | +IncludeBlocks: Preserve |
| 69 | +IncludeCategories: |
| 70 | + - Regex: '^<.*' |
| 71 | + Priority: 1 |
| 72 | + - Regex: '^".*' |
| 73 | + Priority: 2 |
| 74 | + - Regex: '.*' |
| 75 | + Priority: 3 |
| 76 | +IncludeIsMainRegex: '([-_](test|unittest))?$' |
40 | 77 | IndentPPDirectives: BeforeHash |
41 | | -IndentWidth: 2 |
42 | | -KeepEmptyLinesAtTheStartOfBlocks: true |
| 78 | +InsertBraces: true |
| 79 | +IndentCaseLabels: true |
| 80 | +InsertNewlineAtEOF: true |
| 81 | +MacroBlockBegin: '' |
| 82 | +MacroBlockEnd: '' |
43 | 83 | MaxEmptyLinesToKeep: 2 |
44 | 84 | NamespaceIndentation: All |
45 | | -ObjCSpaceAfterProperty: false |
46 | | -ObjCSpaceBeforeProtocolList: true |
47 | | -PointerAlignment: Right |
| 85 | +PenaltyBreakBeforeFirstCallParameter: 1000000 |
| 86 | +PenaltyBreakOpenParenthesis: 1000000 |
| 87 | +QualifierAlignment: Custom |
| 88 | +QualifierOrder: ['static', 'const', 'volatile', 'restrict', 'type'] |
48 | 89 | ReflowComments: false |
49 | | -SpaceAfterCStyleCast: true |
50 | | -SpaceAfterLogicalNot: false |
51 | 90 | SpaceAfterTemplateKeyword: false |
52 | | -SpaceBeforeAssignmentOperators: true |
53 | | -SpaceBeforeCpp11BracedList: false |
54 | | -SpaceBeforeCtorInitializerColon: true |
55 | | -SpaceBeforeInheritanceColon: true |
56 | | -SpaceBeforeParens: ControlStatements |
57 | 91 | SpaceBeforeRangeBasedForLoopColon: false |
58 | 92 | SpaceInEmptyParentheses: false |
59 | | -SpacesBeforeTrailingComments: 0 |
60 | 93 | SpacesInAngles: false |
| 94 | +SpacesInConditionalStatement: false |
61 | 95 | SpacesInCStyleCastParentheses: false |
62 | | -SpacesInContainerLiterals: true |
63 | 96 | SpacesInParentheses: false |
64 | | -SpacesInSquareBrackets: false |
| 97 | +SortIncludes: false |
65 | 98 | TabWidth: 2 |
66 | | -UseTab: Never |
| 99 | +... |
0 commit comments