|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- ---
- BasedOnStyle: Microsoft
- Language: CSharp
- AccessModifierOffset: -4
- AlignAfterOpenBracket: BlockIndent
- AlignArrayOfStructures: None
- AlignConsecutiveMacros: None
- AlignConsecutiveAssignments: None
- AlignConsecutiveBitFields: None
- AlignConsecutiveDeclarations: None
- AlignEscapedNewlines: Right
- AlignOperands: Align
- AlignTrailingComments: true
- AllowAllArgumentsOnNextLine: true
- AllowAllParametersOfDeclarationOnNextLine: true
- AllowShortEnumsOnASingleLine: false
- AllowShortBlocksOnASingleLine: Never
- AllowShortCaseLabelsOnASingleLine: false
- AllowShortFunctionsOnASingleLine: None
- AllowShortLambdasOnASingleLine: All
- AllowShortIfStatementsOnASingleLine: Never
- AllowShortLoopsOnASingleLine: false
- AlwaysBreakAfterDefinitionReturnType: None
- AlwaysBreakAfterReturnType: None
- AlwaysBreakBeforeMultilineStrings: false
- AlwaysBreakTemplateDeclarations: MultiLine
- AttributeMacros:
- - __capability
- BinPackArguments: false
- BinPackParameters: false
- BraceWrapping:
- AfterCaseLabel: true
- AfterClass: true
- AfterControlStatement: Always
- AfterEnum: true
- AfterFunction: true
- AfterNamespace: true
- AfterObjCDeclaration: true
- AfterStruct: true
- AfterUnion: true
- AfterExternBlock: true
- BeforeCatch: true
- BeforeElse: true
- BeforeLambdaBody: true
- BeforeWhile: false
- IndentBraces: false
- SplitEmptyFunction: true
- SplitEmptyRecord: true
- SplitEmptyNamespace: true
- BreakBeforeBinaryOperators: None
- BreakBeforeConceptDeclarations: true
- BreakBeforeBraces: Custom
- BreakInheritanceList: AfterColon
- BreakBeforeTernaryOperators: false
- BreakConstructorInitializersBeforeComma: false
- BreakConstructorInitializers: AfterColon
- BreakAfterJavaFieldAnnotations: false
- BreakStringLiterals: false
- ColumnLimit: 0
- CommentPragmas: '^ THU pragma:'
- CompactNamespaces: false
- ConstructorInitializerIndentWidth: 4
- ContinuationIndentWidth: 4
- Cpp11BracedListStyle: true
- DeriveLineEnding: true
- DerivePointerAlignment: false
- DisableFormat: false
- EmptyLineAfterAccessModifier: Never
- EmptyLineBeforeAccessModifier: Always
- ExperimentalAutoDetectBinPacking: false
- PackConstructorInitializers: CurrentLine
- FixNamespaceComments: true
- ForEachMacros:
- - foreach
- - Q_FOREACH
- - BOOST_FOREACH
- IfMacros:
- - KJ_IF_MAYBE
- IncludeBlocks: Merge
- IncludeCategories:
- - Regex: '^"(llvm|llvm-c|clang|clang-c)/'
- Priority: 2
- SortPriority: 0
- CaseSensitive: false
- - Regex: '^(<|"(gtest|gmock|isl|json)/)'
- Priority: 3
- SortPriority: 0
- CaseSensitive: false
- - Regex: '.*'
- Priority: 1
- SortPriority: 0
- CaseSensitive: false
- IndentAccessModifiers: false
- IndentCaseLabels: true
- IndentCaseBlocks: true
- IndentExternBlock: AfterExternBlock
- IndentGotoLabels: true
- IndentPPDirectives: None
- IndentRequires: false
- IndentWidth: 4
- IndentWrappedFunctionNames: true
- InsertTrailingCommas: None
- LambdaBodyIndentation: Signature
- MaxEmptyLinesToKeep: 1
- NamespaceIndentation: All
- PointerAlignment: Left
- QualifierAlignment: Leave
- ReferenceAlignment: Pointer
- ReflowComments: true
- SeparateDefinitionBlocks: Leave
- SortIncludes: Never
- SpaceAfterTemplateKeyword: false
- SpaceBeforeAssignmentOperators: true
- SpaceBeforeCaseColon: false
- SpaceBeforeCtorInitializerColon: true
- SpaceBeforeInheritanceColon: true
- SpaceBeforeParens: ControlStatements
- SpaceBeforeParensOptions:
- AfterControlStatements: true
- AfterForeachMacros: true
- AfterFunctionDefinitionName: false
- AfterFunctionDeclarationName: false
- AfterIfMacros: true
- AfterOverloadedOperator: false
- BeforeNonEmptyParentheses: false
- SpaceBeforeRangeBasedForLoopColon: true
- SpacesInSquareBrackets: false
- SpaceInEmptyBlock: true
- SpaceInEmptyParentheses: false
- SpacesBeforeTrailingComments: 2
- SpacesInAngles: Never
- SpacesInCStyleCastParentheses: false
- SpacesInConditionalStatement: false
- SpacesInContainerLiterals: false
- SpacesInLineCommentPrefix:
- Minimum: 1
- SpacesInParentheses: false
- SpaceBeforeSquareBrackets: false
- Standard: Latest
- TabWidth: 4
- UseTab: Never
- ---
- BasedOnStyle: Google
- Language: Cpp
- AccessModifierOffset: -4
- AlignAfterOpenBracket: BlockIndent
- AlignArrayOfStructures: None
- AlignConsecutiveMacros: None
- AlignConsecutiveAssignments: None
- AlignConsecutiveBitFields: None
- AlignConsecutiveDeclarations: None
- AlignEscapedNewlines: Right
- AlignOperands: Align
- AlignTrailingComments: true
- AllowAllArgumentsOnNextLine: true
- AllowAllParametersOfDeclarationOnNextLine: true
- AllowShortEnumsOnASingleLine: false
- AllowShortBlocksOnASingleLine: Never
- AllowShortCaseLabelsOnASingleLine: false
- AllowShortFunctionsOnASingleLine: None
- AllowShortLambdasOnASingleLine: All
- AllowShortIfStatementsOnASingleLine: Never
- AllowShortLoopsOnASingleLine: false
- AlwaysBreakAfterDefinitionReturnType: None
- AlwaysBreakAfterReturnType: None
- AlwaysBreakBeforeMultilineStrings: false
- AlwaysBreakTemplateDeclarations: MultiLine
- AttributeMacros:
- - __capability
- BinPackArguments: false
- BinPackParameters: false
- BraceWrapping:
- AfterCaseLabel: true
- AfterClass: true
- AfterControlStatement: Always
- AfterEnum: true
- AfterFunction: true
- AfterNamespace: true
- AfterObjCDeclaration: true
- AfterStruct: true
- AfterUnion: true
- AfterExternBlock: true
- BeforeCatch: true
- BeforeElse: true
- BeforeLambdaBody: true
- BeforeWhile: false
- IndentBraces: false
- SplitEmptyFunction: true
- SplitEmptyRecord: true
- SplitEmptyNamespace: true
- BreakBeforeBinaryOperators: None
- BreakBeforeConceptDeclarations: true
- BreakBeforeBraces: Custom
- BreakInheritanceList: AfterColon
- BreakBeforeTernaryOperators: false
- BreakConstructorInitializersBeforeComma: false
- BreakConstructorInitializers: AfterColon
- BreakAfterJavaFieldAnnotations: false
- BreakStringLiterals: false
- ColumnLimit: 0
- CommentPragmas: '^ THU pragma:'
- CompactNamespaces: false
- ConstructorInitializerIndentWidth: 4
- ContinuationIndentWidth: 4
- Cpp11BracedListStyle: true
- DeriveLineEnding: true
- DerivePointerAlignment: false
- DisableFormat: false
- EmptyLineAfterAccessModifier: Never
- EmptyLineBeforeAccessModifier: Always
- ExperimentalAutoDetectBinPacking: false
- PackConstructorInitializers: CurrentLine
- FixNamespaceComments: true
- ForEachMacros:
- - foreach
- - Q_FOREACH
- - BOOST_FOREACH
- IfMacros:
- - KJ_IF_MAYBE
- IncludeBlocks: Merge
- IncludeCategories:
- - Regex: '^"(llvm|llvm-c|clang|clang-c)/'
- Priority: 2
- SortPriority: 0
- CaseSensitive: false
- - Regex: '^(<|"(gtest|gmock|isl|json)/)'
- Priority: 3
- SortPriority: 0
- CaseSensitive: false
- - Regex: '.*'
- Priority: 1
- SortPriority: 0
- CaseSensitive: false
- IndentAccessModifiers: false
- IndentCaseLabels: true
- IndentCaseBlocks: true
- IndentExternBlock: AfterExternBlock
- IndentGotoLabels: true
- IndentPPDirectives: None
- IndentRequires: false
- IndentWidth: 4
- IndentWrappedFunctionNames: true
- InsertTrailingCommas: None
- LambdaBodyIndentation: Signature
- MaxEmptyLinesToKeep: 1
- NamespaceIndentation: All
- PointerAlignment: Left
- QualifierAlignment: Leave
- ReferenceAlignment: Pointer
- ReflowComments: true
- SeparateDefinitionBlocks: Leave
- SortIncludes: Never
- SpaceAfterTemplateKeyword: false
- SpaceBeforeAssignmentOperators: true
- SpaceBeforeCaseColon: false
- SpaceBeforeCtorInitializerColon: true
- SpaceBeforeInheritanceColon: true
- SpaceBeforeParens: ControlStatements
- SpaceBeforeParensOptions:
- AfterControlStatements: true
- AfterForeachMacros: true
- AfterFunctionDefinitionName: false
- AfterFunctionDeclarationName: false
- AfterIfMacros: true
- AfterOverloadedOperator: false
- BeforeNonEmptyParentheses: false
- SpaceBeforeRangeBasedForLoopColon: true
- SpacesInSquareBrackets: false
- SpaceInEmptyBlock: true
- SpaceInEmptyParentheses: false
- SpacesBeforeTrailingComments: 2
- SpacesInAngles: Never
- SpacesInCStyleCastParentheses: false
- SpacesInConditionalStatement: false
- SpacesInContainerLiterals: false
- SpacesInLineCommentPrefix:
- Minimum: 1
- SpacesInParentheses: false
- SpaceBeforeSquareBrackets: false
- Standard: c++17
- TabWidth: 4
- UseTab: Never
-
|