Skip to content

Commit

Permalink
Add .clang-format
Browse files Browse the repository at this point in the history
Add config file for clang-format. The configuration is based on
rt-labs coding conventions.
  • Loading branch information
hefloryd committed Sep 23, 2020
1 parent edd2872 commit 5fab115
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
AlignAfterOpenBracket: AlwaysBreak
AlignConsecutiveAssignments: false
AlignConsecutiveMacros: true
AllowAllArgumentsOnNextLine: false
AllowAllParametersOfDeclarationOnNextLine: false
AllowShortCaseLabelsOnASingleLine: false
AllowShortFunctionsOnASingleLine: None
AllowShortIfStatementsOnASingleLine: Never
BinPackArguments: false
BinPackParameters: false
BreakBeforeBraces: Custom
BraceWrapping:
AfterCaseLabel: true
AfterClass: true
AfterControlStatement: true
AfterEnum: true
AfterFunction: true
AfterNamespace: true
AfterStruct: true
AfterUnion: true
BeforeCatch: true
BeforeElse: true
IndentBraces: false
SplitEmptyFunction: true
SplitEmptyRecord: true
SplitEmptyNamespace: false
AfterExternBlock: false
ColumnLimit: 80
ContinuationIndentWidth: 3
IndentCaseLabels: false
IndentWidth: 3
PenaltyBreakAssignment: 10
PenaltyBreakBeforeFirstCallParameter: 30
PenaltyBreakComment: 10
PenaltyBreakString: 100
PenaltyExcessCharacter: 100
PenaltyReturnTypeOnItsOwnLine: 100000
PointerAlignment: Middle
SortIncludes: false
SpaceBeforeParens: NonEmptyParentheses
UseTab: Never

0 comments on commit 5fab115

Please sign in to comment.