12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- # Generated from CLion C/C++ Code Style settings
- BasedOnStyle: LLVM
- AlignAfterOpenBracket: Align
- AlignConsecutiveAssignments: None
- AlignOperands: Align
- AllowAllArgumentsOnNextLine: false
- AllowAllConstructorInitializersOnNextLine: false
- AllowAllParametersOfDeclarationOnNextLine: false
- AllowShortBlocksOnASingleLine: Always
- AllowShortCaseLabelsOnASingleLine: false
- AllowShortFunctionsOnASingleLine: None
- AllowShortIfStatementsOnASingleLine: Never
- AllowShortLambdasOnASingleLine: All
- AllowShortLoopsOnASingleLine: false
- AlwaysBreakAfterReturnType: None
- AlwaysBreakTemplateDeclarations: Yes
- BreakBeforeBraces: Custom
- BraceWrapping:
- AfterCaseLabel: true
- AfterClass: true
- AfterControlStatement: Always
- AfterEnum: true
- AfterFunction: true
- AfterNamespace: true
- AfterStruct: true
- AfterUnion: true
- BeforeCatch: true
- BeforeElse: true
- IndentBraces: false
- SplitEmptyFunction: false
- SplitEmptyRecord: true
- BreakBeforeBinaryOperators: None
- BreakBeforeTernaryOperators: true
- BreakConstructorInitializers: BeforeColon
- BreakInheritanceList: BeforeColon
- ColumnLimit: 700
- CompactNamespaces: true
- ContinuationIndentWidth: 4
- EmptyLineAfterAccessModifier: Always
- FixNamespaceComments: false
- IndentAccessModifiers: true
- IndentCaseLabels: true
- IndentPPDirectives: BeforeHash
- IndentWidth: 2
- KeepEmptyLinesAtTheStartOfBlocks: true
- MaxEmptyLinesToKeep: 2
- NamespaceIndentation: All
- ObjCSpaceAfterProperty: false
- ObjCSpaceBeforeProtocolList: true
- PointerAlignment: Right
- ReflowComments: false
- SortIncludes: CaseSensitive
- SpaceAfterCStyleCast: true
- SpaceAfterLogicalNot: false
- SpaceAfterTemplateKeyword: false
- SpaceBeforeAssignmentOperators: true
- SpaceBeforeCpp11BracedList: false
- SpaceBeforeCtorInitializerColon: true
- SpaceBeforeInheritanceColon: true
- SpaceBeforeParens: ControlStatements
- SpaceBeforeRangeBasedForLoopColon: true
- SpaceInEmptyParentheses: false
- SpacesBeforeTrailingComments: 1
- SpacesInAngles: false
- SpacesInCStyleCastParentheses: false
- SpacesInContainerLiterals: false
- SpacesInParentheses: false
- SpacesInSquareBrackets: false
- TabWidth: 2
- UseTab: Never
|