Created
March 31, 2019 21:20
-
-
Save simogasp/a76ebf476717c1d51a7f32f0b2e95b60 to your computer and use it in GitHub Desktop.
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 | |
AlignTrailingComments: 'true' | |
AllowAllParametersOfDeclarationOnNextLine: 'true' | |
AllowShortBlocksOnASingleLine: 'true' | |
AllowShortCaseLabelsOnASingleLine: 'true' | |
AllowShortFunctionsOnASingleLine: All | |
AllowShortIfStatementsOnASingleLine: 'false' | |
AllowShortLoopsOnASingleLine: 'false' | |
AlwaysBreakAfterReturnType: None | |
AlwaysBreakAfterDefinitionReturnType: None | |
AlwaysBreakTemplateDeclarations: 'true' | |
BinPackArguments: 'false' | |
BinPackParameters: 'false' | |
BreakBeforeBraces: Custom | |
BraceWrapping: | |
AfterClass: 'true' | |
AfterControlStatement: 'true' | |
AfterEnum: 'true' | |
AfterFunction: 'true' | |
AfterNamespace: 'false' | |
AfterObjCDeclaration: 'false' | |
AfterStruct: 'true' | |
AfterUnion: 'true' | |
AfterExternBlock: 'true' | |
BeforeCatch: 'true' | |
BeforeElse: 'true' | |
IndentBraces: 'false' | |
SplitEmptyFunction: 'false' | |
SplitEmptyRecord: 'false' | |
SplitEmptyNamespace: 'false' | |
BreakBeforeInheritanceComma: 'false' | |
CompactNamespaces: 'false' | |
ConstructorInitializerAllOnOneLineOrOnePerLine: 'false' | |
Cpp11BracedListStyle: 'true' | |
DerivePointerAlignment: 'false' | |
IndentCaseLabels: 'true' | |
IndentWidth: '4' | |
KeepEmptyLinesAtTheStartOfBlocks: 'false' | |
Language: Cpp | |
PointerAlignment: Left | |
ReflowComments: 'true' | |
SpaceBeforeAssignmentOperators: 'true' | |
SpaceBeforeParens: Never | |
SpaceInEmptyParentheses: 'false' | |
SpacesInContainerLiterals: 'false' | |
SpacesInParentheses: 'false' | |
SpacesInSquareBrackets: 'false' | |
Standard: Cpp11 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment