| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- AccessModifierOffset: -4
- AlignAfterOpenBracket: AlwaysBreak
- AlignConsecutiveAssignments: false
- AlignConsecutiveDeclarations: false
- AlignEscapedNewlines: Left
- AlignOperands: true
- AlignTrailingComments: false
- AllowAllParametersOfDeclarationOnNextLine: false
- AllowShortBlocksOnASingleLine: Never
- AllowShortCaseLabelsOnASingleLine: false
- AllowShortFunctionsOnASingleLine: None
- AllowShortIfStatementsOnASingleLine: true
- AllowShortLoopsOnASingleLine: true
- AlwaysBreakAfterDefinitionReturnType: None
- AlwaysBreakAfterReturnType: None
- AlwaysBreakBeforeMultilineStrings: false
- AlwaysBreakTemplateDeclarations: false
- BinPackArguments: false
- BinPackParameters: false
- BreakBeforeBinaryOperators: None
- BreakBeforeBraces: Attach
- BreakBeforeTernaryOperators: false
- BreakConstructorInitializers: BeforeComma
- BreakStringLiterals: false
- ColumnLimit: 99
- CompactNamespaces: false
- ConstructorInitializerAllOnOneLineOrOnePerLine: false
- ConstructorInitializerIndentWidth: 4
- ContinuationIndentWidth: 4
- Cpp11BracedListStyle: true
- DerivePointerAlignment: false
- DisableFormat: false
- ExperimentalAutoDetectBinPacking: false
- FixNamespaceComments: false
- IncludeBlocks: Preserve
- IncludeCategories:
- - Regex: '.*'
- Priority: 1
- IncludeIsMainRegex: '(Test)?$'
- IndentCaseLabels: false
- IndentPPDirectives: None
- IndentWidth: 4
- IndentWrappedFunctionNames: false
- JavaScriptQuotes: Leave
- JavaScriptWrapImports: true
- KeepEmptyLinesAtTheStartOfBlocks: false
- MacroBlockBegin: ''
- MacroBlockEnd: ''
- MaxEmptyLinesToKeep: 1
- NamespaceIndentation: None
- ObjCBinPackProtocolList: Auto
- ObjCBlockIndentWidth: 4
- ObjCSpaceAfterProperty: true
- ObjCSpaceBeforeProtocolList: true
- # Taken from git's rules
- PenaltyBreakAssignment: 10
- PenaltyBreakBeforeFirstCallParameter: 30
- PenaltyBreakComment: 10
- PenaltyBreakFirstLessLess: 0
- PenaltyBreakString: 10
- PenaltyExcessCharacter: 100
- PenaltyReturnTypeOnItsOwnLine: 60
- PointerAlignment: Left
- ReflowComments: false
- SortIncludes: false
- SortUsingDeclarations: false
- SpaceAfterCStyleCast: false
- SpaceAfterTemplateKeyword: true
- SpaceBeforeAssignmentOperators: true
- SpaceBeforeCtorInitializerColon: true
- SpaceBeforeInheritanceColon: true
- SpaceBeforeParens: Never
- SpaceBeforeRangeBasedForLoopColon: true
- SpaceInEmptyParentheses: false
- SpacesBeforeTrailingComments: 1
- SpacesInAngles: false
- SpacesInContainerLiterals: false
- SpacesInCStyleCastParentheses: false
- SpacesInParentheses: false
- SpacesInSquareBrackets: false
- Standard: Cpp03
- TabWidth: 4
- UseTab: Never
|