mirror of
https://github.com/ModOrganizer2/modorganizer-installer_fomod_csharp.git
synced 2026-07-27 14:07:20 -07:00
42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
---
|
|
# We'll use defaults from the LLVM style, but with 4 columns indentation.
|
|
BasedOnStyle: LLVM
|
|
IndentWidth: 2
|
|
---
|
|
Language: Cpp
|
|
DeriveLineEnding: false
|
|
UseCRLF: true
|
|
DerivePointerAlignment: false
|
|
PointerAlignment: Left
|
|
AlignConsecutiveAssignments: true
|
|
AllowShortFunctionsOnASingleLine: Inline
|
|
AllowShortIfStatementsOnASingleLine: Never
|
|
AllowShortLambdasOnASingleLine: Empty
|
|
AlwaysBreakTemplateDeclarations: Yes
|
|
AccessModifierOffset: -2
|
|
AlignTrailingComments: true
|
|
SpacesBeforeTrailingComments: 2
|
|
NamespaceIndentation: Inner
|
|
MaxEmptyLinesToKeep: 1
|
|
BreakBeforeBraces: Custom
|
|
BraceWrapping:
|
|
AfterCaseLabel: false
|
|
AfterClass: true
|
|
AfterControlStatement: false
|
|
AfterEnum: true
|
|
AfterFunction: true
|
|
AfterNamespace: true
|
|
AfterStruct: true
|
|
AfterUnion: true
|
|
AfterExternBlock: true
|
|
BeforeCatch: false
|
|
BeforeElse: false
|
|
BeforeLambdaBody: false
|
|
BeforeWhile: false
|
|
IndentBraces: false
|
|
SplitEmptyFunction: false
|
|
SplitEmptyRecord: false
|
|
SplitEmptyNamespace: true
|
|
ColumnLimit: 88
|
|
ForEachMacros: ['Q_FOREACH', 'foreach']
|