Last active
September 21, 2017 12:29
-
-
Save willkill07/b7f77dc3a109c987e1657fdb7d22f276 to your computer and use it in GitHub Desktop.
Zoppetti-like .clang-format
This file contains hidden or 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: Mozilla | |
AlignAfterOpenBracket: Align | |
AlignEscapedNewlinesLeft: 'true' | |
AlignOperands: 'true' | |
AlignTrailingComments: 'true' | |
AllowAllParametersOfDeclarationOnNextLine: 'false' | |
AllowShortBlocksOnASingleLine: 'false' | |
AllowShortCaseLabelsOnASingleLine: 'false' | |
AllowShortFunctionsOnASingleLine: None | |
AllowShortIfStatementsOnASingleLine: 'false' | |
AllowShortLoopsOnASingleLine: 'false' | |
AlwaysBreakAfterDefinitionReturnType: All | |
AlwaysBreakAfterReturnType: All | |
AlwaysBreakBeforeMultilineStrings: 'true' | |
AlwaysBreakTemplateDeclarations: 'true' | |
BinPackArguments: 'true' | |
BinPackParameters: 'true' | |
BreakBeforeBraces: Allman | |
ConstructorInitializerAllOnOneLineOrOnePerLine: 'true' | |
Cpp11BracedListStyle: 'true' | |
DerivePointerAlignment: 'true' | |
Language: Cpp | |
PointerAlignment: Left | |
ReflowComments: 'false' | |
SortIncludes: 'true' | |
SpaceAfterCStyleCast: 'false' | |
SpaceBeforeAssignmentOperators: 'true' | |
SpaceBeforeParens: Always | |
SpaceInEmptyParentheses: 'false' | |
SpacesInAngles: 'false' | |
SpacesInCStyleCastParentheses: 'false' | |
SpacesInContainerLiterals: 'false' | |
Standard: Auto | |
TabWidth: '2' | |
UseTab: Never |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment