Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 1 | --- |
Ed Tanous | 4758d5b | 2017-06-06 15:28:13 -0700 | [diff] [blame^] | 2 | BasedOnStyle: Google |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 3 | AccessModifierOffset: -1 |
| 4 | AlignAfterOpenBracket: Align |
| 5 | AlignConsecutiveAssignments: false |
| 6 | AlignConsecutiveDeclarations: false |
| 7 | AlignEscapedNewlinesLeft: true |
| 8 | AlignOperands: true |
| 9 | AlignTrailingComments: true |
| 10 | AllowAllParametersOfDeclarationOnNextLine: true |
| 11 | AllowShortBlocksOnASingleLine: false |
| 12 | AllowShortCaseLabelsOnASingleLine: false |
| 13 | AllowShortFunctionsOnASingleLine: All |
| 14 | AllowShortIfStatementsOnASingleLine: true |
| 15 | AllowShortLoopsOnASingleLine: true |
| 16 | AlwaysBreakAfterDefinitionReturnType: None |
| 17 | AlwaysBreakAfterReturnType: None |
| 18 | AlwaysBreakBeforeMultilineStrings: true |
| 19 | AlwaysBreakTemplateDeclarations: true |
| 20 | BinPackArguments: true |
| 21 | BinPackParameters: true |
| 22 | BraceWrapping: |
| 23 | AfterClass: false |
| 24 | AfterControlStatement: false |
| 25 | AfterEnum: false |
| 26 | AfterFunction: false |
| 27 | AfterNamespace: false |
| 28 | AfterObjCDeclaration: false |
| 29 | AfterStruct: false |
| 30 | AfterUnion: false |
| 31 | BeforeCatch: false |
| 32 | BeforeElse: false |
| 33 | IndentBraces: false |
| 34 | BreakBeforeBinaryOperators: None |
| 35 | BreakBeforeBraces: Attach |
| 36 | BreakBeforeTernaryOperators: true |
| 37 | BreakConstructorInitializersBeforeComma: false |
Ed Tanous | 1ccd57c | 2017-03-21 13:15:58 -0700 | [diff] [blame] | 38 | ColumnLimit: 80 |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 39 | CommentPragmas: '^ IWYU pragma:' |
| 40 | ConstructorInitializerAllOnOneLineOrOnePerLine: true |
| 41 | ConstructorInitializerIndentWidth: 4 |
| 42 | ContinuationIndentWidth: 4 |
| 43 | Cpp11BracedListStyle: true |
| 44 | DerivePointerAlignment: true |
| 45 | DisableFormat: false |
| 46 | ExperimentalAutoDetectBinPacking: false |
| 47 | ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] |
| 48 | IncludeCategories: |
Ed Tanous | 9140a67 | 2017-04-24 17:01:32 -0700 | [diff] [blame] | 49 | |
| 50 | - Regex: '^[<"](crow)' |
| 51 | Priority: 5 |
| 52 | - Regex: '^[<"](boost)' |
| 53 | Priority: 6 |
| 54 | - Regex: '^[<"](gtest|gmock)' |
| 55 | Priority: 7 |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 56 | - Regex: '^<.*\.h>' |
| 57 | Priority: 1 |
Ed Tanous | 9140a67 | 2017-04-24 17:01:32 -0700 | [diff] [blame] | 58 | - Regex: '^<.*\.hpp>' |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 59 | Priority: 2 |
Ed Tanous | 9140a67 | 2017-04-24 17:01:32 -0700 | [diff] [blame] | 60 | - Regex: '^<.*' |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 61 | Priority: 3 |
Ed Tanous | 9140a67 | 2017-04-24 17:01:32 -0700 | [diff] [blame] | 62 | - Regex: '.*' |
| 63 | Priority: 4 |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 64 | IndentCaseLabels: true |
| 65 | IndentWidth: 2 |
| 66 | IndentWrappedFunctionNames: false |
| 67 | KeepEmptyLinesAtTheStartOfBlocks: false |
| 68 | MacroBlockBegin: '' |
| 69 | MacroBlockEnd: '' |
| 70 | MaxEmptyLinesToKeep: 1 |
| 71 | NamespaceIndentation: None |
| 72 | ObjCBlockIndentWidth: 2 |
| 73 | ObjCSpaceAfterProperty: false |
| 74 | ObjCSpaceBeforeProtocolList: false |
| 75 | PenaltyBreakBeforeFirstCallParameter: 1 |
| 76 | PenaltyBreakComment: 300 |
| 77 | PenaltyBreakFirstLessLess: 120 |
| 78 | PenaltyBreakString: 1000 |
| 79 | PenaltyExcessCharacter: 1000000 |
| 80 | PenaltyReturnTypeOnItsOwnLine: 200 |
| 81 | PointerAlignment: Left |
| 82 | ReflowComments: true |
Ed Tanous | 1ff4878 | 2017-04-18 12:45:08 -0700 | [diff] [blame] | 83 | SortIncludes: true |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 84 | SpaceAfterCStyleCast: false |
| 85 | SpaceBeforeAssignmentOperators: true |
| 86 | SpaceBeforeParens: ControlStatements |
| 87 | SpaceInEmptyParentheses: false |
| 88 | SpacesBeforeTrailingComments: 2 |
| 89 | SpacesInAngles: false |
| 90 | SpacesInContainerLiterals: true |
| 91 | SpacesInCStyleCastParentheses: false |
| 92 | SpacesInParentheses: false |
| 93 | SpacesInSquareBrackets: false |
| 94 | Standard: Auto |
| 95 | TabWidth: 8 |
| 96 | UseTab: Never |
| 97 | ... |
| 98 | |