Last active
July 3, 2024 17:08
-
-
Save wojexe/9643ac4bb27514e26a552d26312ad441 to your computer and use it in GitHub Desktop.
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
# wojexe | 03.07.2024 | |
BasedOnStyle: LLVM | |
AccessModifierOffset: -4 | |
AlignAfterOpenBracket: Align | |
AlignArrayOfStructures: Right | |
AlignConsecutiveAssignments: None | |
AlignOperands: Align | |
AllowAllArgumentsOnNextLine: false | |
AllowAllConstructorInitializersOnNextLine: false | |
AllowAllParametersOfDeclarationOnNextLine: false | |
AllowShortBlocksOnASingleLine: Always | |
AllowShortCaseLabelsOnASingleLine: false | |
AllowShortEnumsOnASingleLine: true | |
AllowShortFunctionsOnASingleLine: All | |
AllowShortIfStatementsOnASingleLine: Never | |
AllowShortLambdasOnASingleLine: All | |
AllowShortLoopsOnASingleLine: false | |
AlwaysBreakAfterReturnType: None | |
AlwaysBreakBeforeMultilineStrings: true | |
AlwaysBreakTemplateDeclarations: Yes | |
BinPackArguments: false | |
BinPackParameters: false | |
BitFieldColonSpacing: Both | |
BreakBeforeBraces: Custom | |
BraceWrapping: | |
AfterCaseLabel: false | |
AfterClass: true | |
AfterControlStatement: Never | |
AfterEnum: true | |
AfterFunction: true | |
AfterNamespace: true | |
AfterStruct: true | |
AfterUnion: true | |
AfterExternBlock: true | |
BeforeCatch: true | |
BeforeElse: true | |
BeforeLambdaBody: false | |
BeforeWhile: false | |
IndentBraces: false | |
SplitEmptyFunction: true | |
SplitEmptyRecord: true | |
SplitEmptyNamespace: true | |
BreakBeforeBinaryOperators: None | |
BreakBeforeConceptDeclarations: true | |
BreakBeforeTernaryOperators: true | |
BreakConstructorInitializers: BeforeColon | |
BreakInheritanceList: BeforeColon | |
BreakStringLiterals: false | |
ColumnLimit: 90 | |
CompactNamespaces: false | |
ContinuationIndentWidth: 4 | |
Cpp11BracedListStyle: false | |
EmptyLineAfterAccessModifier: Never | |
EmptyLineBeforeAccessModifier: Always | |
IncludeBlocks: Regroup | |
IndentAccessModifiers: false | |
IndentCaseBlocks: true | |
IndentCaseLabels: true | |
IndentExternBlock: true | |
IndentGotoLabels: false | |
IndentPPDirectives: AfterHash | |
IndentWidth: 4 | |
IndentWrappedFunctionNames: true | |
# InsertBraces: false | |
KeepEmptyLinesAtTheStartOfBlocks: true | |
LambdaBodyIndentation: Signature | |
Language: Cpp | |
MaxEmptyLinesToKeep: 2 | |
NamespaceIndentation: All | |
# PackConstructorInitializers: CurrentLine | |
PenaltyBreakComment: 10 | |
# PenaltyBreakOpenParenthesis: 10 | |
PenaltyExcessCharacter: 5 | |
PenaltyIndentedWhitespace: 5 | |
PenaltyReturnTypeOnItsOwnLine: 20 | |
PointerAlignment: Left | |
ReferenceAlignment: Left | |
ReflowComments: true | |
# RemoveBracesLLVM: false | |
# RequiresClausePosition: OwnLine | |
# SeparateDefinitionBlocks: Always | |
SortIncludes: CaseInsensitive | |
SortUsingDeclarations: true | |
SpaceAfterCStyleCast: true | |
SpaceAfterLogicalNot: false | |
SpaceAfterTemplateKeyword: true | |
SpaceBeforeAssignmentOperators: true | |
SpaceBeforeCaseColon: false | |
SpaceBeforeCpp11BracedList: true | |
SpaceBeforeCtorInitializerColon: true | |
SpaceBeforeInheritanceColon: true | |
SpaceBeforeParens: ControlStatements | |
SpaceBeforeRangeBasedForLoopColon: true | |
SpaceBeforeSquareBrackets: false | |
SpaceInEmptyBlock: true | |
SpaceInEmptyParentheses: false | |
SpacesBeforeTrailingComments: 1 | |
SpacesInAngles: false | |
SpacesInCStyleCastParentheses: false | |
SpacesInConditionalStatement: true | |
SpacesInContainerLiterals: true | |
SpacesInLineCommentPrefix: | |
Minimum: 1 | |
Maximum: -1 | |
SpacesInParentheses: false | |
SpacesInSquareBrackets: false | |
Standard: Auto | |
TabWidth: 4 | |
UseCRLF: false | |
UseTab: Never |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment