| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- # Generated from CLion C/C++ Code Style settings
- ---
- Language: Cpp
- Standard: Latest
- BasedOnStyle: LLVM
- AccessModifierOffset: -4
- AlignAfterOpenBracket: DontAlign
- AlignArrayOfStructures: Right
- AlignConsecutiveAssignments: true
- AlignConsecutiveBitFields: true
- AlignConsecutiveDeclarations:
- Enabled: true
- AcrossComments: true
- AlignConsecutiveMacros: true
- AlignConsecutiveShortCaseStatements:
- Enabled: true
- AlignEscapedNewlines: DontAlign
- AlignOperands: true
- AlignTrailingComments: true
- AllowAllArgumentsOnNextLine: true
- AllowAllParametersOfDeclarationOnNextLine: true
- AllowShortBlocksOnASingleLine: Always
- AllowShortCaseExpressionOnASingleLine: true
- AllowShortCaseLabelsOnASingleLine: true
- AllowShortCompoundRequirementOnASingleLine: true
- AllowShortEnumsOnASingleLine: true
- AllowShortFunctionsOnASingleLine: Empty
- AllowShortIfStatementsOnASingleLine: WithoutElse
- AllowShortLambdasOnASingleLine: All
- AllowShortLoopsOnASingleLine: true
- AlwaysBreakBeforeMultilineStrings: true
- BinPackArguments: true
- BinPackParameters: BinPack
- BitFieldColonSpacing: Before
- BraceWrapping:
- AfterCaseLabel: false
- AfterClass: false
- AfterControlStatement: Never
- AfterEnum: false
- AfterFunction: false
- AfterNamespace: false
- AfterStruct: false
- AfterUnion: false
- AfterExternBlock: false
- BeforeCatch: false
- BeforeElse: false
- BeforeLambdaBody: false
- BeforeWhile: false
- IndentBraces: true
- SplitEmptyFunction: false
- SplitEmptyRecord: false
- SplitEmptyNamespace: false
- BracedInitializerIndentWidth: 2
- BreakAdjacentStringLiterals: false
- BreakAfterAttributes: Leave
- BreakAfterReturnType: Automatic
- BreakArrays: false
- BreakBeforeBinaryOperators: All
- BreakBeforeBraces: Attach
- BreakBeforeConceptDeclarations: Always
- BreakBeforeTernaryOperators: true
- BreakConstructorInitializers: BeforeColon
- BreakFunctionDefinitionParameters: false
- BreakInheritanceList: BeforeColon
- BreakStringLiterals: true
- BreakTemplateDeclarations: Yes
- ColumnLimit: 128
- CompactNamespaces: true
- ContinuationIndentWidth: 4
- Cpp11BracedListStyle: false
- EmptyLineAfterAccessModifier: Never
- EmptyLineBeforeAccessModifier: LogicalBlock
- ExperimentalAutoDetectBinPacking: true
- IncludeBlocks: Regroup
- IncludeCategories:
- - Regex: '^".*'
- Priority: 1
- - Regex: '^<.*'
- Priority: 2
- - Regex: '.*'
- Priority: 3
- IncludeIsMainRegex: '([-_](test|unittest))?$'
- IndentAccessModifiers: false
- IndentCaseBlocks: false
- IndentCaseLabels: true
- IndentExternBlock: NoIndent
- IndentGotoLabels: false
- IndentPPDirectives: BeforeHash
- IndentRequiresClause: true
- IndentWidth: 4
- IndentWrappedFunctionNames: false
- InsertBraces: false
- InsertNewlineAtEOF: true
- LambdaBodyIndentation: OuterScope
- MacroBlockBegin: ''
- MacroBlockEnd: ''
- MaxEmptyLinesToKeep: 1
- NamespaceIndentation: All
- PackConstructorInitializers: BinPack
- PointerAlignment: Right
- ReferenceAlignment: Right
- ReflowComments: true
- RequiresClausePosition: OwnLineWithBrace
- RequiresExpressionIndentation: OuterScope
- SeparateDefinitionBlocks: Always
- SortIncludes: CaseInsensitive
- SortUsingDeclarations: Lexicographic
- SpaceAfterCStyleCast: true
- SpaceAfterLogicalNot: false
- SpaceAfterTemplateKeyword: false
- SpaceBeforeAssignmentOperators: true
- SpaceBeforeCaseColon: false
- SpaceBeforeCpp11BracedList: true
- SpaceBeforeInheritanceColon: false
- SpaceBeforeJsonColon: false
- SpaceBeforeRangeBasedForLoopColon: true
- SpaceBeforeSquareBrackets: false
- SpaceInEmptyBlock: true
- SpaceInEmptyParentheses: false
- SpacesInAngles: false
- SpacesInConditionalStatement: true
- SpacesInCStyleCastParentheses: false
- SpacesInContainerLiterals: false
- SpacesInParentheses: false
- TabWidth: 4
|