mirror of
				https://github.com/KevinMidboe/TinyGSM.git
				synced 2025-10-29 18:00:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			113 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			113 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
---
 | 
						|
Language: Cpp
 | 
						|
# BasedOnStyle:  Google
 | 
						|
AccessModifierOffset: -1
 | 
						|
AlignAfterOpenBracket: Align
 | 
						|
AlignConsecutiveMacros: false
 | 
						|
AlignConsecutiveAssignments: true
 | 
						|
AlignConsecutiveDeclarations: true
 | 
						|
AlignEscapedNewlines: Left
 | 
						|
AlignOperands: false
 | 
						|
AlignTrailingComments: true
 | 
						|
AllowAllArgumentsOnNextLine: true
 | 
						|
AllowAllConstructorInitializersOnNextLine: false
 | 
						|
AllowAllParametersOfDeclarationOnNextLine: false
 | 
						|
AllowShortBlocksOnASingleLine: true
 | 
						|
AllowShortCaseLabelsOnASingleLine: true
 | 
						|
AllowShortFunctionsOnASingleLine: Empty
 | 
						|
AllowShortLambdasOnASingleLine: All
 | 
						|
AllowShortIfStatementsOnASingleLine: WithoutElse
 | 
						|
AllowShortLoopsOnASingleLine: true
 | 
						|
AlwaysBreakAfterDefinitionReturnType: None
 | 
						|
AlwaysBreakAfterReturnType: None
 | 
						|
AlwaysBreakBeforeMultilineStrings: false
 | 
						|
AlwaysBreakTemplateDeclarations: Yes
 | 
						|
BinPackArguments: true
 | 
						|
BinPackParameters: true
 | 
						|
BreakBeforeBinaryOperators: None
 | 
						|
BreakBeforeBraces: Attach
 | 
						|
BreakBeforeInheritanceComma: false
 | 
						|
BreakInheritanceList: BeforeColon
 | 
						|
BreakBeforeTernaryOperators: true
 | 
						|
BreakConstructorInitializersBeforeComma: false
 | 
						|
BreakConstructorInitializers: BeforeColon
 | 
						|
BreakAfterJavaFieldAnnotations: false
 | 
						|
BreakStringLiterals: true
 | 
						|
ColumnLimit: 80
 | 
						|
CommentPragmas: "^ IWYU pragma:"
 | 
						|
CompactNamespaces: false
 | 
						|
ConstructorInitializerAllOnOneLineOrOnePerLine: true
 | 
						|
ConstructorInitializerIndentWidth: 4
 | 
						|
ContinuationIndentWidth: 4
 | 
						|
Cpp11BracedListStyle: true
 | 
						|
DerivePointerAlignment: false
 | 
						|
DisableFormat: false
 | 
						|
ExperimentalAutoDetectBinPacking: false
 | 
						|
FixNamespaceComments: true
 | 
						|
ForEachMacros:
 | 
						|
  - foreach
 | 
						|
  - Q_FOREACH
 | 
						|
  - BOOST_FOREACH
 | 
						|
IncludeBlocks: Preserve
 | 
						|
IncludeCategories:
 | 
						|
  - Regex:           '^<ext/.*\.h>'
 | 
						|
    Priority:        2
 | 
						|
  - Regex:           '^<.*\.h>'
 | 
						|
    Priority:        1
 | 
						|
  - Regex:           '^<.*'
 | 
						|
    Priority:        2
 | 
						|
  - Regex:           '.*'
 | 
						|
    Priority:        3
 | 
						|
  - Regex:           '.*.tpp'
 | 
						|
    Priority:        4
 | 
						|
IncludeIsMainRegex: '([-_](test|unittest))?$'
 | 
						|
IndentCaseLabels: true
 | 
						|
IndentPPDirectives: None
 | 
						|
IndentWidth: 2
 | 
						|
IndentWrappedFunctionNames: false
 | 
						|
JavaScriptQuotes: Leave
 | 
						|
JavaScriptWrapImports: true
 | 
						|
KeepEmptyLinesAtTheStartOfBlocks: false
 | 
						|
MacroBlockBegin: ""
 | 
						|
MacroBlockEnd: ""
 | 
						|
MaxEmptyLinesToKeep: 2
 | 
						|
NamespaceIndentation: None
 | 
						|
# ObjCBinPackProtocolList: Auto
 | 
						|
ObjCBlockIndentWidth: 2
 | 
						|
ObjCSpaceAfterProperty: false
 | 
						|
ObjCSpaceBeforeProtocolList: true
 | 
						|
PenaltyBreakAssignment: 25
 | 
						|
PenaltyBreakBeforeFirstCallParameter: 19
 | 
						|
PenaltyBreakComment: 300
 | 
						|
PenaltyBreakFirstLessLess: 120
 | 
						|
PenaltyBreakString: 1000
 | 
						|
PenaltyBreakTemplateDeclaration: 10
 | 
						|
PenaltyExcessCharacter: 600
 | 
						|
PenaltyReturnTypeOnItsOwnLine: 50
 | 
						|
PointerAlignment: Left
 | 
						|
PointerBindsToType: true
 | 
						|
ReflowComments: true
 | 
						|
SortIncludes: false
 | 
						|
SortUsingDeclarations: true
 | 
						|
SpaceAfterCStyleCast: false
 | 
						|
SpaceAfterLogicalNot: false
 | 
						|
SpaceAfterTemplateKeyword: true
 | 
						|
SpaceBeforeAssignmentOperators: true
 | 
						|
SpaceBeforeCpp11BracedList: false
 | 
						|
SpaceBeforeCtorInitializerColon: true
 | 
						|
SpaceBeforeInheritanceColon: true
 | 
						|
SpaceBeforeParens: ControlStatements
 | 
						|
SpaceBeforeRangeBasedForLoopColon: true
 | 
						|
SpaceInEmptyParentheses: false
 | 
						|
SpacesBeforeTrailingComments: 2
 | 
						|
SpacesInAngles: false
 | 
						|
SpacesInCStyleCastParentheses: false
 | 
						|
SpacesInContainerLiterals: true
 | 
						|
SpacesInCStyleCastParentheses: false
 | 
						|
SpacesInParentheses: false
 | 
						|
SpacesInSquareBrackets: false
 | 
						|
Standard: Cpp11
 | 
						|
TabWidth: 2
 | 
						|
UseTab: Never
 | 
						|
---
 |