Created
February 24, 2020 07:58
-
-
Save jlmakes/88066352433e86ddb930b7ffe232a049 to your computer and use it in GitHub Desktop.
C++ Code Style
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: Chromium | |
| # UseTab: Always | |
| # IndentWidth: 4 | |
| # TabWidth: 4 | |
| # BreakBeforeBraces: Allman | |
| # AllowShortIfStatementsOnASingleLine: false | |
| # IndentCaseLabels: false | |
| # ColumnLimit: 104 | |
| # AccessModifierOffset: -4 | |
| # AlignAfterOpenBracket: AlwaysBreak | |
| --- | |
| Language: Cpp | |
| AccessModifierOffset: -4 | |
| AlignAfterOpenBracket: DontAlign | |
| AlignConsecutiveAssignments: false | |
| AlignConsecutiveDeclarations: false | |
| AlignEscapedNewlines: Left | |
| AlignOperands: true | |
| AlignTrailingComments: true | |
| AllowAllParametersOfDeclarationOnNextLine: true | |
| AllowShortBlocksOnASingleLine: false | |
| AllowShortCaseLabelsOnASingleLine: false | |
| AllowShortFunctionsOnASingleLine: None | |
| AllowShortIfStatementsOnASingleLine: false | |
| AllowShortLoopsOnASingleLine: false | |
| AlwaysBreakAfterReturnType: None | |
| AlwaysBreakBeforeMultilineStrings: true | |
| AlwaysBreakTemplateDeclarations: Yes | |
| BinPackArguments: false | |
| BinPackParameters: false | |
| BreakBeforeBinaryOperators: None | |
| BreakBeforeBraces: Allman | |
| BreakBeforeInheritanceComma: false | |
| BreakInheritanceList: BeforeColon | |
| BreakBeforeTernaryOperators: true | |
| BreakConstructorInitializersBeforeComma: false | |
| BreakConstructorInitializers: BeforeComma | |
| BreakAfterJavaFieldAnnotations: false | |
| BreakStringLiterals: true | |
| ColumnLimit: 104 | |
| CommentPragmas: '^ IWYU pragma:' | |
| CompactNamespaces: true | |
| ConstructorInitializerAllOnOneLineOrOnePerLine: true | |
| ConstructorInitializerIndentWidth: 4 | |
| ContinuationIndentWidth: 4 | |
| Cpp11BracedListStyle: true | |
| DerivePointerAlignment: false | |
| DisableFormat: false | |
| FixNamespaceComments: true | |
| ForEachMacros: | |
| - for | |
| IncludeBlocks: Merge | |
| IncludeCategories: | |
| - Regex: '.*\.generated\.h' | |
| Priority: 110 | |
| - Regex: '.*(PCH).*' | |
| Priority: -1 | |
| - Regex: '".*"' | |
| Priority: 1 | |
| - Regex: '^<.*\.(h)>' | |
| Priority: 3 | |
| - Regex: '^<.*>' | |
| Priority: 4 | |
| 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: 2 | |
| PenaltyBreakBeforeFirstCallParameter: 1 | |
| PenaltyBreakComment: 300 | |
| PenaltyBreakFirstLessLess: 120 | |
| PenaltyBreakString: 1100 | |
| PenaltyBreakTemplateDeclaration: 10 | |
| PenaltyExcessCharacter: 1100000 | |
| 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: '' | |
| ReflowComments: true | |
| SortIncludes: true | |
| SortUsingDeclarations: true | |
| SpaceAfterCStyleCast: true | |
| SpaceAfterTemplateKeyword: true | |
| SpaceBeforeAssignmentOperators: true | |
| SpaceBeforeCpp11BracedList: false | |
| SpaceBeforeCtorInitializerColon: true | |
| SpaceBeforeInheritanceColon: true | |
| SpaceBeforeParens: ControlStatements | |
| SpaceBeforeRangeBasedForLoopColon: true | |
| SpaceInEmptyParentheses: false | |
| SpacesBeforeTrailingComments: 4 | |
| SpacesInAngles: false | |
| SpacesInContainerLiterals: true | |
| SpacesInCStyleCastParentheses: false | |
| SpacesInParentheses: false | |
| SpacesInSquareBrackets: false | |
| Standard: Auto | |
| TabWidth: 4 | |
| UseTab: Always | |
| ... | |
| --- | |
| # Language: Cpp | |
| # BasedOnStyle: LLVM | |
| # IndentWidth: 4 | |
| # TabWidth: 4 | |
| # UseTab: Always | |
| # Standard: Cpp11 | |
| # AccessModifierOffset: -4 | |
| # AlignAfterOpenBracket: DontAlign | |
| # AlignEscapedNewlines: Right | |
| # AlignTrailingComments: true | |
| # AllowShortCaseLabelsOnASingleLine: true | |
| # AllowShortFunctionsOnASingleLine: InlineOnly | |
| # BreakBeforeBraces: Allman | |
| # BreakConstructorInitializersBeforeComma: true | |
| # ColumnLimit: 0 | |
| # PointerAlignment: Left | |
| # SpacesInAngles: false | |
| # --- | |
| # Language: ObjC | |
| # ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uygun