mirror of
https://github.com/lefticus/6502-cpp.git
synced 2024-12-21 10:30:35 +00:00
99 lines
2.6 KiB
Plaintext
99 lines
2.6 KiB
Plaintext
|
AccessModifierOffset: -2
|
||
|
AlignAfterOpenBracket: DontAlign
|
||
|
AlignConsecutiveAssignments: false
|
||
|
AlignConsecutiveDeclarations: false
|
||
|
AlignEscapedNewlines: Left
|
||
|
AlignOperands: true
|
||
|
AlignTrailingComments: false
|
||
|
AllowAllParametersOfDeclarationOnNextLine: false
|
||
|
AllowShortBlocksOnASingleLine: true
|
||
|
AllowShortCaseLabelsOnASingleLine: false
|
||
|
AllowShortFunctionsOnASingleLine: All
|
||
|
AllowShortIfStatementsOnASingleLine: true
|
||
|
AllowShortLoopsOnASingleLine: true
|
||
|
AlwaysBreakAfterDefinitionReturnType: None
|
||
|
AlwaysBreakAfterReturnType: None
|
||
|
AlwaysBreakBeforeMultilineStrings: true
|
||
|
AlwaysBreakTemplateDeclarations: false
|
||
|
BinPackArguments: false
|
||
|
BinPackParameters: false
|
||
|
BraceWrapping:
|
||
|
AfterClass: true
|
||
|
AfterControlStatement: false
|
||
|
AfterEnum: false
|
||
|
AfterFunction: true
|
||
|
AfterNamespace: false
|
||
|
AfterObjCDeclaration: false
|
||
|
AfterStruct: true
|
||
|
AfterUnion: false
|
||
|
BeforeCatch: false
|
||
|
BeforeElse: false
|
||
|
IndentBraces: false
|
||
|
SplitEmptyFunction: false
|
||
|
SplitEmptyNamespace: true
|
||
|
SplitEmptyRecord: true
|
||
|
BreakAfterJavaFieldAnnotations: true
|
||
|
BreakBeforeBinaryOperators: NonAssignment
|
||
|
BreakBeforeBraces: Custom
|
||
|
BreakBeforeInheritanceComma: true
|
||
|
BreakBeforeTernaryOperators: true
|
||
|
BreakConstructorInitializers: BeforeColon
|
||
|
BreakConstructorInitializersBeforeComma: false
|
||
|
BreakStringLiterals: true
|
||
|
ColumnLimit: 0
|
||
|
CommentPragmas: '^ IWYU pragma:'
|
||
|
CompactNamespaces: false
|
||
|
ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
||
|
ConstructorInitializerIndentWidth: 2
|
||
|
ContinuationIndentWidth: 2
|
||
|
Cpp11BracedListStyle: false
|
||
|
DerivePointerAlignment: false
|
||
|
DisableFormat: false
|
||
|
ExperimentalAutoDetectBinPacking: true
|
||
|
FixNamespaceComments: true
|
||
|
ForEachMacros:
|
||
|
- foreach
|
||
|
- Q_FOREACH
|
||
|
- BOOST_FOREACH
|
||
|
IncludeCategories:
|
||
|
- Priority: 2
|
||
|
Regex: ^"(llvm|llvm-c|clang|clang-c)/
|
||
|
- Priority: 3
|
||
|
Regex: ^(<|"(gtest|gmock|isl|json)/)
|
||
|
- Priority: 1
|
||
|
Regex: .*
|
||
|
IncludeIsMainRegex: (Test)?$
|
||
|
IndentCaseLabels: false
|
||
|
IndentWidth: 2
|
||
|
IndentWrappedFunctionNames: true
|
||
|
JavaScriptQuotes: Leave
|
||
|
JavaScriptWrapImports: true
|
||
|
KeepEmptyLinesAtTheStartOfBlocks: true
|
||
|
Language: Cpp
|
||
|
MacroBlockBegin: ''
|
||
|
MacroBlockEnd: ''
|
||
|
MaxEmptyLinesToKeep: 2
|
||
|
NamespaceIndentation: Inner
|
||
|
ObjCBlockIndentWidth: 7
|
||
|
ObjCSpaceAfterProperty: true
|
||
|
ObjCSpaceBeforeProtocolList: false
|
||
|
PointerAlignment: Right
|
||
|
ReflowComments: true
|
||
|
SortIncludes: false
|
||
|
SortUsingDeclarations: false
|
||
|
SpaceAfterCStyleCast: false
|
||
|
SpaceAfterTemplateKeyword: false
|
||
|
SpaceBeforeAssignmentOperators: true
|
||
|
SpaceBeforeParens: ControlStatements
|
||
|
SpaceInEmptyParentheses: false
|
||
|
SpacesBeforeTrailingComments: 0
|
||
|
SpacesInAngles: false
|
||
|
SpacesInCStyleCastParentheses: false
|
||
|
SpacesInContainerLiterals: true
|
||
|
SpacesInParentheses: false
|
||
|
SpacesInSquareBrackets: false
|
||
|
Standard: Cpp11
|
||
|
TabWidth: 8
|
||
|
UseTab: Never
|
||
|
|