Created
April 19, 2020 13:12
-
-
Save eddyekofo94/277d6ff41e425ca9ceff5f423c6514ee to your computer and use it in GitHub Desktop.
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
| --- | |
| Language: Cpp | |
| # BasedOnStyle: Google | |
| AccessModifierOffset: -4 | |
| AlignAfterOpenBracket: Align | |
| AlignConsecutiveAssignments: false | |
| AlignConsecutiveDeclarations: false | |
| AlignEscapedNewlines: Left | |
| AlignOperands: true | |
| AlignTrailingComments: true | |
| AllowAllArgumentsOnNextLine: true | |
| AllowAllConstructorInitializersOnNextLine: true | |
| AllowAllParametersOfDeclarationOnNextLine: true | |
| AllowShortBlocksOnASingleLine: false | |
| AllowShortCaseLabelsOnASingleLine: false | |
| AllowShortFunctionsOnASingleLine: All | |
| AllowShortLambdasOnASingleLine: All | |
| AllowShortIfStatementsOnASingleLine: WithoutElse | |
| AllowShortLoopsOnASingleLine: true | |
| AlwaysBreakAfterDefinitionReturnType: None | |
| AlwaysBreakAfterReturnType: None | |
| AlwaysBreakBeforeMultilineStrings: true | |
| AlwaysBreakTemplateDeclarations: Yes | |
| BinPackArguments: true | |
| BinPackParameters: true | |
| BraceWrapping: | |
| AfterCaseLabel: true | |
| AfterClass: true | |
| AfterControlStatement: true | |
| AfterEnum: true | |
| AfterFunction: true | |
| AfterNamespace: false | |
| AfterObjCDeclaration: true | |
| AfterStruct: true | |
| AfterUnion: false | |
| AfterExternBlock: false | |
| BeforeCatch: true | |
| BeforeElse: true | |
| IndentBraces: false | |
| SplitEmptyFunction: true | |
| SplitEmptyRecord: true | |
| SplitEmptyNamespace: true | |
| BreakBeforeBinaryOperators: None | |
| BreakBeforeBraces: Custom | |
| BreakBeforeInheritanceComma: false | |
| BreakInheritanceList: BeforeColon | |
| BreakBeforeTernaryOperators: true | |
| BreakConstructorInitializersBeforeComma: false | |
| BreakConstructorInitializers: BeforeColon | |
| BreakAfterJavaFieldAnnotations: false | |
| BreakStringLiterals: true | |
| ColumnLimit: 80 | |
| CommentPragmas: '^ IWYU pragma:' | |
| CompactNamespaces: false | |
| ConstructorInitializerAllOnOneLineOrOnePerLine: true | |
| ConstructorInitializerIndentWidth: 4 | |
| ContinuationIndentWidth: 4 | |
| Cpp11BracedListStyle: true | |
| DerivePointerAlignment: true | |
| DisableFormat: false | |
| ExperimentalAutoDetectBinPacking: false | |
| FixNamespaceComments: true | |
| ForEachMacros: | |
| - foreach | |
| - Q_FOREACH | |
| - BOOST_FOREACH | |
| IncludeBlocks: Regroup | |
| IncludeCategories: | |
| - Regex: '^<ext/.*\.h>' | |
| Priority: 2 | |
| - Regex: '^<.*\.h>' | |
| Priority: 1 | |
| - Regex: '^<.*' | |
| Priority: 2 | |
| - Regex: '.*' | |
| Priority: 3 | |
| IncludeIsMainRegex: '([-_](test|unittest))?$' | |
| IndentCaseLabels: true | |
| IndentPPDirectives: None | |
| IndentWidth: 4 | |
| IndentWrappedFunctionNames: false | |
| JavaScriptQuotes: Leave | |
| JavaScriptWrapImports: true | |
| KeepEmptyLinesAtTheStartOfBlocks: false | |
| MacroBlockBegin: '' | |
| MacroBlockEnd: '' | |
| MaxEmptyLinesToKeep: 1 | |
| NamespaceIndentation: None | |
| ObjCBinPackProtocolList: Never | |
| ObjCBlockIndentWidth: 2 | |
| ObjCSpaceAfterProperty: false | |
| ObjCSpaceBeforeProtocolList: true | |
| PenaltyBreakAssignment: 4 | |
| PenaltyBreakBeforeFirstCallParameter: 1 | |
| PenaltyBreakComment: 300 | |
| PenaltyBreakFirstLessLess: 120 | |
| PenaltyBreakString: 1000 | |
| PenaltyBreakTemplateDeclaration: 10 | |
| PenaltyExcessCharacter: 1000000 | |
| PenaltyReturnTypeOnItsOwnLine: 200 | |
| PointerAlignment: Left | |
| RawStringFormats: | |
| - Language: Cpp | |
| Delimiters: | |
| - cc | |
| - CC | |
| - cpp | |
| - Cpp | |
| - CPP | |
| - 'c++' | |
| - 'C++' | |
| CanonicalDelimiter: '' | |
| BasedOnStyle: google | |
| - Language: TextProto | |
| Delimiters: | |
| - pb | |
| - PB | |
| - proto | |
| - PROTO | |
| EnclosingFunctions: | |
| - EqualsProto | |
| - EquivToProto | |
| - PARSE_PARTIAL_TEXT_PROTO | |
| - PARSE_TEST_PROTO | |
| - PARSE_TEXT_PROTO | |
| - ParseTextOrDie | |
| - ParseTextProtoOrDie | |
| CanonicalDelimiter: '' | |
| BasedOnStyle: google | |
| ReflowComments: true | |
| SortIncludes: true | |
| SortUsingDeclarations: true | |
| SpaceAfterCStyleCast: false | |
| SpaceAfterLogicalNot: false | |
| SpaceAfterTemplateKeyword: true | |
| SpaceBeforeAssignmentOperators: true | |
| SpaceBeforeCpp11BracedList: false | |
| SpaceBeforeCtorInitializerColon: true | |
| SpaceBeforeInheritanceColon: true | |
| SpaceBeforeParens: ControlStatements | |
| SpaceBeforeRangeBasedForLoopColon: true | |
| SpaceInEmptyParentheses: false | |
| SpacesBeforeTrailingComments: 2 | |
| SpacesInAngles: false | |
| SpacesInContainerLiterals: true | |
| SpacesInCStyleCastParentheses: false | |
| SpacesInParentheses: false | |
| SpacesInSquareBrackets: false | |
| Standard: Auto | |
| StatementMacros: | |
| - Q_UNUSED | |
| - QT_REQUIRE_VERSION | |
| TabWidth: 8 | |
| UseTab: Never | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment