-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Based on the LLVM style with custom settings for Unreal Engine | ||
BasedOnStyle: LLVM | ||
IndentWidth: 4 | ||
TabWidth: 4 | ||
UseTab: Always | ||
BreakBeforeBraces: Allman | ||
AllowShortFunctionsOnASingleLine: Empty | ||
ColumnLimit: 160 # How many characters before the code wraps onto another line | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: true | ||
IndentCaseLabels: true | ||
IndentPPDirectives: None | ||
SortIncludes: false | ||
AlwaysBreakTemplateDeclarations: Yes | ||
PenaltyExcessCharacter: 100 | ||
PenaltyBreakBeforeFirstCallParameter: 19 | ||
SpacesInParentheses: false | ||
SpaceAfterCStyleCast: true | ||
SpaceBeforeParens: ControlStatements | ||
Cpp11BracedListStyle: false | ||
SpaceBeforeRangeBasedForLoopColon: true | ||
ReflowComments: false | ||
PointerAlignment: Left | ||
DerivePointerAlignment: false | ||
IndentWrappedFunctionNames: false | ||
AlignConsecutiveAssignments: false | ||
AlignEscapedNewlines: Left | ||
AlignOperands: false | ||
AlignTrailingComments: true | ||
AllowAllArgumentsOnNextLine: true | ||
AllowAllConstructorInitializersOnNextLine: true | ||
AllowShortBlocksOnASingleLine: false | ||
AllowShortCaseLabelsOnASingleLine: false | ||
AllowShortIfStatementsOnASingleLine: false | ||
AllowShortLoopsOnASingleLine: false | ||
AlwaysBreakAfterDefinitionReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: false | ||
BreakBeforeTernaryOperators: true | ||
BreakConstructorInitializersBeforeComma: false | ||
BreakAfterJavaFieldAnnotations: false | ||
BreakStringLiterals: false | ||
CompactNamespaces: false | ||
KeepEmptyLinesAtTheStartOfBlocks: false | ||
MaxEmptyLinesToKeep: 1 | ||
NamespaceIndentation: None | ||
PenaltyBreakComment: 300 | ||
PenaltyBreakFirstLessLess: 120 | ||
PenaltyBreakString: 1000 | ||
PenaltyReturnTypeOnItsOwnLine: 60 | ||
SpaceBeforeCaseColon: false | ||
SpaceInEmptyParentheses: false | ||
SpacesBeforeTrailingComments: 1 | ||
Standard: Cpp11 | ||
UseCRLF: false | ||
SpaceBeforeAssignmentOperators: true | ||
AccessModifierOffset: -4 |