blob: 82e72e732a34d77a0634c5e879a1028dbce0f263 [file] [log] [blame]
Hayden Gomes75116992019-08-15 10:09:39 -07001---
2Language: Java
3DisableFormat: true
4SortIncludes: false
5---
6Language: Cpp
Selim Gurunc4d7c012019-05-13 20:27:22 -07007BasedOnStyle: Google
Eric Jeong41641362020-02-05 11:45:49 -08008AlignOperands: false
Selim Gurunc4d7c012019-05-13 20:27:22 -07009AllowShortBlocksOnASingleLine: false
Eric Jeong41641362020-02-05 11:45:49 -080010AllowShortFunctionsOnASingleLine: Inline
11AlwaysBreakBeforeMultilineStrings: false
Selim Gurunc4d7c012019-05-13 20:27:22 -070012CommentPragmas: NOLINT:.*
Eric Jeong41641362020-02-05 11:45:49 -080013ColumnLimit: 100
14AccessModifierOffset: -4
Selim Gurunc4d7c012019-05-13 20:27:22 -070015IndentWidth: 4
Selim Gurunc4d7c012019-05-13 20:27:22 -070016TabWidth: 4
Eric Jeong41641362020-02-05 11:45:49 -080017ContinuationIndentWidth: 8
18ConstructorInitializerIndentWidth: 6
Eric Jeong8ec89bf2020-02-11 15:49:56 -080019SpacesBeforeTrailingComments: 2
Eric Jeong41641362020-02-05 11:45:49 -080020IncludeBlocks: Preserve
21DerivePointerAlignment: false
22PointerAlignment: Left
Selim Gurunc4d7c012019-05-13 20:27:22 -070023UseTab: Never
Eric Jeong41641362020-02-05 11:45:49 -080024BreakInheritanceList: AfterColon
25BreakConstructorInitializers: AfterColon
26PenaltyBreakBeforeFirstCallParameter: 100000
Hayden Gomes75116992019-08-15 10:09:39 -070027---