Created
October 2, 2023 13:06
-
-
Save anthonyprintup/3542970504aa102616ec020648a8363c to your computer and use it in GitHub Desktop.
Personal Clang-Format Style
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generated from CLion C/C++ Code Style settings | |
BasedOnStyle: LLVM | |
AccessModifierOffset: -4 | |
AlignAfterOpenBracket: Align | |
AlignConsecutiveAssignments: None | |
AlignOperands: Align | |
AllowAllArgumentsOnNextLine: true | |
AllowAllParametersOfDeclarationOnNextLine: true | |
AllowShortBlocksOnASingleLine: Always | |
AllowShortCaseLabelsOnASingleLine: true | |
AllowShortFunctionsOnASingleLine: All | |
AllowShortIfStatementsOnASingleLine: Never | |
AllowShortLambdasOnASingleLine: All | |
AllowShortLoopsOnASingleLine: true | |
AlwaysBreakAfterReturnType: None | |
AlwaysBreakTemplateDeclarations: No | |
BreakBeforeBraces: Attach | |
BreakBeforeBinaryOperators: None | |
BreakBeforeTernaryOperators: false | |
BreakConstructorInitializers: AfterColon | |
BreakInheritanceList: AfterComma | |
ColumnLimit: 120 | |
CompactNamespaces: false | |
ContinuationIndentWidth: 4 | |
EmptyLineAfterAccessModifier: Leave | |
EmptyLineBeforeAccessModifier: Leave | |
FixNamespaceComments: true | |
IndentCaseLabels: true | |
IndentExternBlock: Indent | |
IndentPPDirectives: None | |
IndentWidth: 4 | |
KeepEmptyLinesAtTheStartOfBlocks: false | |
MaxEmptyLinesToKeep: 2 | |
NamespaceIndentation: All | |
ObjCSpaceAfterProperty: false | |
ObjCSpaceBeforeProtocolList: true | |
PackConstructorInitializers: NextLine | |
PointerAlignment: Right | |
ReflowComments: true | |
SpaceAfterCStyleCast: true | |
SpaceAfterLogicalNot: false | |
SpaceAfterTemplateKeyword: false | |
SpaceBeforeAssignmentOperators: true | |
SpaceBeforeCpp11BracedList: true | |
SpaceBeforeCtorInitializerColon: false | |
SpaceBeforeInheritanceColon: false | |
SpaceBeforeParens: ControlStatements | |
SpaceInEmptyParentheses: false | |
SpacesBeforeTrailingComments: 1 | |
SpacesInAngles: false | |
SpacesInLineCommentPrefix: | |
Minimum: 1 | |
Maximum: -1 | |
SpacesInCStyleCastParentheses: false | |
SpacesInContainerLiterals: false | |
SpacesInParentheses: false | |
SpacesInSquareBrackets: false | |
TabWidth: 4 | |
UseTab: Never |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment