Last active
April 24, 2023 00:35
-
-
Save ksvbka/5ad4a1956e1d13e2e019d11270d3597f to your computer and use it in GitHub Desktop.
clang-format file for ROS develop, CppStyleGuide
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
BasedOnStyle: Google | |
AccessModifierOffset: -2 | |
ConstructorInitializerIndentWidth: 2 | |
AlignEscapedNewlinesLeft: false | |
AlignTrailingComments: true | |
AllowAllParametersOfDeclarationOnNextLine: false | |
AllowShortIfStatementsOnASingleLine: false | |
AllowShortLoopsOnASingleLine: false | |
AllowShortFunctionsOnASingleLine: None | |
AllowShortLoopsOnASingleLine: false | |
AlwaysBreakTemplateDeclarations: true | |
AlwaysBreakBeforeMultilineStrings: false | |
BreakBeforeBinaryOperators: false | |
BreakBeforeTernaryOperators: false | |
BreakConstructorInitializersBeforeComma: true | |
BinPackParameters: true | |
ColumnLimit: 100 | |
ConstructorInitializerAllOnOneLineOrOnePerLine: true | |
DerivePointerBinding: true | |
ExperimentalAutoDetectBinPacking: false | |
IndentCaseLabels: true | |
MaxEmptyLinesToKeep: 1 | |
NamespaceIndentation: None | |
ObjCSpaceBeforeProtocolList: true | |
PenaltyBreakBeforeFirstCallParameter: 19 | |
PenaltyBreakComment: 60 | |
PenaltyBreakString: 1 | |
PenaltyBreakFirstLessLess: 1000 | |
PenaltyExcessCharacter: 100 | |
PenaltyReturnTypeOnItsOwnLine: 90 | |
PointerBindsToType: false | |
SpacesBeforeTrailingComments: 2 | |
Cpp11BracedListStyle: true | |
Standard: Cpp11 | |
IndentWidth: 2 | |
TabWidth: 2 | |
UseTab: Never | |
BreakBeforeBraces: Linux | |
IndentFunctionDeclarationAfterType: false | |
SpacesInParentheses: false | |
SpacesInAngles: false | |
SpaceInEmptyParentheses: false | |
SpacesInCStyleCastParentheses: false | |
SpaceAfterControlStatementKeyword: true | |
SpaceBeforeAssignmentOperators: true | |
ContinuationIndentWidth: 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment