197 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			197 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			YAML
		
	
	
	
| ---
 | |
| # Typical usage is to apply this to the lines you've modified in a local
 | |
| # change. Stage your changes with "git add" and then run:
 | |
| # $ git clang-format
 | |
| # You can optionally use the "--" file filter to restrict formatting to certain
 | |
| # files or directories. The tool will display  the list of files that were
 | |
| # modified. These have been modified without being staged. You can review the
 | |
| # modifications using "git diff".
 | |
| #
 | |
| # IF YOU UPDATE THE CPP SECTION ALSO UPDATE THE OBJECTIVE-C SECTION. IF YOU
 | |
| # KNOW HOW TO SHARE SETTINGS BETWEEN THE TWO YOU'RE A TRUE HERO.
 | |
| 
 | |
| Language:        Cpp
 | |
| # BasedOnStyle:  Google
 | |
| AccessModifierOffset: -4
 | |
| AlignAfterOpenBracket: Align
 | |
| AlignConsecutiveAssignments: false
 | |
| AlignConsecutiveDeclarations: false
 | |
| AlignEscapedNewlinesLeft: true
 | |
| AlignOperands:   true
 | |
| AlignTrailingComments: true
 | |
| AllowAllParametersOfDeclarationOnNextLine: true
 | |
| AllowShortBlocksOnASingleLine: false
 | |
| AllowShortCaseLabelsOnASingleLine: false
 | |
| AllowShortFunctionsOnASingleLine: All
 | |
| AllowShortIfStatementsOnASingleLine: true
 | |
| AllowShortLoopsOnASingleLine: true
 | |
| AlwaysBreakAfterDefinitionReturnType: None
 | |
| AlwaysBreakAfterReturnType: None
 | |
| AlwaysBreakBeforeMultilineStrings: true
 | |
| AlwaysBreakTemplateDeclarations: false
 | |
| BinPackArguments: false
 | |
| BinPackParameters: false
 | |
| BraceWrapping:
 | |
|   AfterClass:      false
 | |
|   AfterControlStatement: false
 | |
|   AfterEnum:       false
 | |
|   AfterFunction:   false
 | |
|   AfterNamespace:  false
 | |
|   AfterObjCDeclaration: false
 | |
|   AfterStruct:     false
 | |
|   AfterUnion:      false
 | |
|   BeforeCatch:     false
 | |
|   BeforeElse:      false
 | |
|   IndentBraces:    false
 | |
| BreakBeforeBinaryOperators: None
 | |
| BreakBeforeBraces: Custom
 | |
| BreakBeforeTernaryOperators: true
 | |
| BreakConstructorInitializersBeforeComma: true
 | |
| BreakAfterJavaFieldAnnotations: false
 | |
| BreakStringLiterals: true
 | |
| ColumnLimit:     100
 | |
| CommentPragmas:  '^ IWYU pragma:'
 | |
| ConstructorInitializerAllOnOneLineOrOnePerLine: true
 | |
| ConstructorInitializerIndentWidth: 8
 | |
| ContinuationIndentWidth: 8
 | |
| Cpp11BracedListStyle: true
 | |
| DerivePointerAlignment: false
 | |
| DisableFormat:   false
 | |
| ExperimentalAutoDetectBinPacking: false
 | |
| ForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH ]
 | |
| IncludeCategories:
 | |
|   - Regex:           '^<.*\.h>'
 | |
|     Priority:        1
 | |
|   - Regex:           '^<.*'
 | |
|     Priority:        2
 | |
|   - Regex:           '.*'
 | |
|     Priority:        3
 | |
| IncludeIsMainRegex: '([-_](test|unittest))?$'
 | |
| IndentCaseLabels: true
 | |
| IndentWidth:     4
 | |
| IndentWrappedFunctionNames: false
 | |
| JavaScriptQuotes: Leave
 | |
| JavaScriptWrapImports: true
 | |
| KeepEmptyLinesAtTheStartOfBlocks: false
 | |
| MaxEmptyLinesToKeep: 1
 | |
| NamespaceIndentation: None
 | |
| ObjCBlockIndentWidth: 2
 | |
| ObjCSpaceAfterProperty: false
 | |
| ObjCSpaceBeforeProtocolList: false
 | |
| PenaltyBreakBeforeFirstCallParameter: 1
 | |
| PenaltyBreakComment: 300
 | |
| PenaltyBreakFirstLessLess: 120
 | |
| PenaltyBreakString: 1000
 | |
| PenaltyExcessCharacter: 1000000
 | |
| PenaltyReturnTypeOnItsOwnLine: 200
 | |
| PointerAlignment: Left
 | |
| ReflowComments:  true
 | |
| SortIncludes:    true
 | |
| SpaceAfterCStyleCast: false
 | |
| SpaceAfterTemplateKeyword: true
 | |
| SpaceBeforeAssignmentOperators: true
 | |
| SpaceBeforeParens: ControlStatements
 | |
| SpaceInEmptyParentheses: false
 | |
| SpacesBeforeTrailingComments: 2
 | |
| SpacesInAngles:  false
 | |
| SpacesInContainerLiterals: true
 | |
| SpacesInCStyleCastParentheses: false
 | |
| SpacesInParentheses: false
 | |
| SpacesInSquareBrackets: false
 | |
| Standard:        Auto
 | |
| TabWidth:        4
 | |
| UseTab:          Never
 | |
| ---
 | |
| Language:        ObjC
 | |
| AccessModifierOffset: -4
 | |
| AlignAfterOpenBracket: Align
 | |
| AlignConsecutiveAssignments: false
 | |
| AlignConsecutiveDeclarations: false
 | |
| AlignEscapedNewlinesLeft: true
 | |
| AlignOperands:   true
 | |
| AlignTrailingComments: true
 | |
| AllowAllParametersOfDeclarationOnNextLine: true
 | |
| AllowShortBlocksOnASingleLine: false
 | |
| AllowShortCaseLabelsOnASingleLine: false
 | |
| AllowShortFunctionsOnASingleLine: All
 | |
| AllowShortIfStatementsOnASingleLine: true
 | |
| AllowShortLoopsOnASingleLine: true
 | |
| AlwaysBreakAfterDefinitionReturnType: None
 | |
| AlwaysBreakAfterReturnType: None
 | |
| AlwaysBreakBeforeMultilineStrings: true
 | |
| AlwaysBreakTemplateDeclarations: false
 | |
| BinPackArguments: false
 | |
| BinPackParameters: false
 | |
| BraceWrapping:
 | |
|   AfterClass:      false
 | |
|   AfterControlStatement: false
 | |
|   AfterEnum:       false
 | |
|   AfterFunction:   false
 | |
|   AfterNamespace:  false
 | |
|   AfterObjCDeclaration: false
 | |
|   AfterStruct:     false
 | |
|   AfterUnion:      false
 | |
|   BeforeCatch:     false
 | |
|   BeforeElse:      false
 | |
|   IndentBraces:    false
 | |
| BreakBeforeBinaryOperators: None
 | |
| BreakBeforeBraces: Custom
 | |
| BreakBeforeTernaryOperators: true
 | |
| BreakConstructorInitializersBeforeComma: true
 | |
| BreakAfterJavaFieldAnnotations: false
 | |
| BreakStringLiterals: true
 | |
| ColumnLimit:     100
 | |
| CommentPragmas:  '^ IWYU pragma:'
 | |
| ConstructorInitializerAllOnOneLineOrOnePerLine: true
 | |
| ConstructorInitializerIndentWidth: 8
 | |
| ContinuationIndentWidth: 8
 | |
| Cpp11BracedListStyle: true
 | |
| DerivePointerAlignment: false
 | |
| DisableFormat:   false
 | |
| ExperimentalAutoDetectBinPacking: false
 | |
| ForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH ]
 | |
| IncludeCategories:
 | |
|   - Regex:           '^<.*\.h>'
 | |
|     Priority:        1
 | |
|   - Regex:           '^<.*'
 | |
|     Priority:        2
 | |
|   - Regex:           '.*'
 | |
|     Priority:        3
 | |
| IncludeIsMainRegex: '([-_](test|unittest))?$'
 | |
| IndentCaseLabels: true
 | |
| IndentWidth:     4
 | |
| IndentWrappedFunctionNames: false
 | |
| JavaScriptQuotes: Leave
 | |
| JavaScriptWrapImports: true
 | |
| KeepEmptyLinesAtTheStartOfBlocks: false
 | |
| MaxEmptyLinesToKeep: 1
 | |
| NamespaceIndentation: None
 | |
| ObjCBlockIndentWidth: 2
 | |
| ObjCSpaceAfterProperty: false
 | |
| ObjCSpaceBeforeProtocolList: false
 | |
| PenaltyBreakBeforeFirstCallParameter: 1
 | |
| PenaltyBreakComment: 300
 | |
| PenaltyBreakFirstLessLess: 120
 | |
| PenaltyBreakString: 1000
 | |
| PenaltyExcessCharacter: 1000000
 | |
| PenaltyReturnTypeOnItsOwnLine: 200
 | |
| PointerAlignment: Left
 | |
| ReflowComments:  true
 | |
| SortIncludes:    true
 | |
| SpaceAfterCStyleCast: false
 | |
| SpaceAfterTemplateKeyword: true
 | |
| SpaceBeforeAssignmentOperators: true
 | |
| SpaceBeforeParens: ControlStatements
 | |
| SpaceInEmptyParentheses: false
 | |
| SpacesBeforeTrailingComments: 2
 | |
| SpacesInAngles:  false
 | |
| SpacesInContainerLiterals: true
 | |
| SpacesInCStyleCastParentheses: false
 | |
| SpacesInParentheses: false
 | |
| SpacesInSquareBrackets: false
 | |
| Standard:        Auto
 | |
| TabWidth:        4
 | |
| UseTab:          Never
 | |
| ...
 | |
| 
 |