blob: 00e2e25803b1473dd885cc7b5d978922cb40e728 [file] [log] [blame]
Ed Tanous167e2372018-05-07 11:59:10 -07001---
2Language: Cpp
3# BasedOnStyle: LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: Align
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
Brad Bishop23520882022-05-26 21:39:53 -04008AlignEscapedNewlines: Right
Ed Tanous167e2372018-05-07 11:59:10 -07009AlignOperands: true
10AlignTrailingComments: true
11AllowAllParametersOfDeclarationOnNextLine: true
12AllowShortBlocksOnASingleLine: false
13AllowShortCaseLabelsOnASingleLine: false
14AllowShortFunctionsOnASingleLine: None
15AllowShortIfStatementsOnASingleLine: false
16AllowShortLoopsOnASingleLine: false
Ed Tanous167e2372018-05-07 11:59:10 -070017AlwaysBreakAfterReturnType: None
18AlwaysBreakBeforeMultilineStrings: false
Brad Bishop23520882022-05-26 21:39:53 -040019AlwaysBreakTemplateDeclarations: Yes
Ed Tanous167e2372018-05-07 11:59:10 -070020BinPackArguments: true
21BinPackParameters: true
22BraceWrapping:
Brad Bishop23520882022-05-26 21:39:53 -040023 AfterCaseLabel: true
Ed Tanous167e2372018-05-07 11:59:10 -070024 AfterClass: true
25 AfterControlStatement: true
26 AfterEnum: true
27 AfterFunction: true
28 AfterNamespace: true
29 AfterObjCDeclaration: true
30 AfterStruct: true
31 AfterUnion: true
Brad Bishop23520882022-05-26 21:39:53 -040032 AfterExternBlock: true
Ed Tanous167e2372018-05-07 11:59:10 -070033 BeforeCatch: true
34 BeforeElse: true
35 IndentBraces: false
Brad Bishop23520882022-05-26 21:39:53 -040036 SplitEmptyFunction: false
37 SplitEmptyRecord: false
38 SplitEmptyNamespace: false
Ed Tanous167e2372018-05-07 11:59:10 -070039BreakBeforeBinaryOperators: None
40BreakBeforeBraces: Custom
41BreakBeforeTernaryOperators: true
42BreakConstructorInitializers: AfterColon
Brad Bishop23520882022-05-26 21:39:53 -040043BreakInheritanceList: AfterColon
44BreakStringLiterals: false
Ed Tanous167e2372018-05-07 11:59:10 -070045ColumnLimit: 80
46CommentPragmas: '^ IWYU pragma:'
Brad Bishop23520882022-05-26 21:39:53 -040047CompactNamespaces: false
Ed Tanous167e2372018-05-07 11:59:10 -070048ConstructorInitializerAllOnOneLineOrOnePerLine: false
49ConstructorInitializerIndentWidth: 4
50ContinuationIndentWidth: 4
51Cpp11BracedListStyle: true
Brad Bishop23520882022-05-26 21:39:53 -040052DeriveLineEnding: false
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050053DerivePointerAlignment: false
Brad Bishop23520882022-05-26 21:39:53 -040054PointerAlignment: Left
Ed Tanous167e2372018-05-07 11:59:10 -070055DisableFormat: false
56ExperimentalAutoDetectBinPacking: false
57FixNamespaceComments: true
58ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050059IncludeBlocks: Regroup
60IncludeCategories:
61 - Regex: '^[<"](gtest|gmock)'
Brad Bishop23520882022-05-26 21:39:53 -040062 Priority: 7
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050063 - Regex: '^"config.h"'
64 Priority: -1
Brad Bishop23520882022-05-26 21:39:53 -040065 - Regex: '^".*\.h"'
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050066 Priority: 1
Brad Bishop23520882022-05-26 21:39:53 -040067 - Regex: '^".*\.hpp"'
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050068 Priority: 2
Brad Bishop23520882022-05-26 21:39:53 -040069 - Regex: '^<.*\.h>'
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050070 Priority: 3
Brad Bishop23520882022-05-26 21:39:53 -040071 - Regex: '^<.*\.hpp>'
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050072 Priority: 4
Brad Bishop23520882022-05-26 21:39:53 -040073 - Regex: '^<.*'
74 Priority: 5
75 - Regex: '.*'
76 Priority: 6
Ed Tanous167e2372018-05-07 11:59:10 -070077IndentCaseLabels: true
78IndentWidth: 4
79IndentWrappedFunctionNames: true
Brad Bishop23520882022-05-26 21:39:53 -040080KeepEmptyLinesAtTheStartOfBlocks: false
Ed Tanous167e2372018-05-07 11:59:10 -070081MacroBlockBegin: ''
82MacroBlockEnd: ''
83MaxEmptyLinesToKeep: 1
84NamespaceIndentation: None
85ObjCBlockIndentWidth: 2
86ObjCSpaceAfterProperty: false
87ObjCSpaceBeforeProtocolList: true
88PenaltyBreakBeforeFirstCallParameter: 19
89PenaltyBreakComment: 300
90PenaltyBreakFirstLessLess: 120
91PenaltyBreakString: 1000
92PenaltyExcessCharacter: 1000000
93PenaltyReturnTypeOnItsOwnLine: 60
Ed Tanous167e2372018-05-07 11:59:10 -070094ReflowComments: true
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050095SortIncludes: true
96SortUsingDeclarations: true
Ed Tanous167e2372018-05-07 11:59:10 -070097SpaceAfterCStyleCast: false
Brad Bishop23520882022-05-26 21:39:53 -040098SpaceAfterTemplateKeyword: true
Ed Tanous167e2372018-05-07 11:59:10 -070099SpaceBeforeAssignmentOperators: true
Brad Bishop23520882022-05-26 21:39:53 -0400100SpaceBeforeCpp11BracedList: false
101SpaceBeforeCtorInitializerColon: true
102SpaceBeforeInheritanceColon: true
Ed Tanous167e2372018-05-07 11:59:10 -0700103SpaceBeforeParens: ControlStatements
Brad Bishop23520882022-05-26 21:39:53 -0400104SpaceBeforeRangeBasedForLoopColon: true
Ed Tanous167e2372018-05-07 11:59:10 -0700105SpaceInEmptyParentheses: false
106SpacesBeforeTrailingComments: 1
107SpacesInAngles: false
108SpacesInContainerLiterals: true
109SpacesInCStyleCastParentheses: false
110SpacesInParentheses: false
111SpacesInSquareBrackets: false
Brad Bishop23520882022-05-26 21:39:53 -0400112Standard: Latest
Ed Tanous167e2372018-05-07 11:59:10 -0700113TabWidth: 4
Brad Bishop23520882022-05-26 21:39:53 -0400114UseCRLF: false
Ed Tanous167e2372018-05-07 11:59:10 -0700115UseTab: Never
116...
Brad Bishop23520882022-05-26 21:39:53 -0400117