mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
81 lines
1.7 KiB
Plaintext
81 lines
1.7 KiB
Plaintext
|
---
|
||
|
BasedOnStyle: WebKit
|
||
|
IndentWidth: 5
|
||
|
TabWidth: 5
|
||
|
ContinuationIndentWidth: 5
|
||
|
UseTab: Always
|
||
|
|
||
|
# Namespaces
|
||
|
NamespaceIndentation: All
|
||
|
CompactNamespaces: true
|
||
|
FixNamespaceComments: true
|
||
|
|
||
|
# Overall Alignment
|
||
|
ColumnLimit: 0
|
||
|
AlignAfterOpenBracket: DontAlign # uses ContinuationIndentWidth for this instead
|
||
|
|
||
|
# Type Alignment
|
||
|
DerivePointerAlignment: false
|
||
|
PointerAlignment: Left
|
||
|
AlwaysBreakTemplateDeclarations: true
|
||
|
AlwaysBreakBeforeMultilineStrings: true
|
||
|
|
||
|
# Comments
|
||
|
AlignTrailingComments: true
|
||
|
ReflowComments: true
|
||
|
|
||
|
# Macros
|
||
|
AlignEscapedNewlines: Left
|
||
|
SortIncludes: false
|
||
|
IndentPPDirectives: AfterHash
|
||
|
|
||
|
# Functions
|
||
|
AllowShortFunctionsOnASingleLine: None
|
||
|
AlwaysBreakAfterReturnType: None
|
||
|
BreakConstructorInitializers:
|
||
|
ConstructorInitializerIndentWidth: 5
|
||
|
ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
||
|
|
||
|
# Braces
|
||
|
Cpp11BracedListStyle: true
|
||
|
BreakBeforeBraces: Custom
|
||
|
BraceWrapping:
|
||
|
AfterEnum: false
|
||
|
AfterStruct: false
|
||
|
AfterControlStatement: false
|
||
|
AfterClass: false
|
||
|
AfterNamespace: false
|
||
|
AfterStruct: false
|
||
|
AfterUnion: false
|
||
|
BeforeElse: false
|
||
|
IndentBraces: false
|
||
|
SplitEmptyFunction: false
|
||
|
SplitEmptyRecord: false
|
||
|
SplitEmptyNamespace: true
|
||
|
|
||
|
# Control Statements
|
||
|
AllowShortIfStatementsOnASingleLine: false
|
||
|
AllowShortLoopsOnASingleLine: false
|
||
|
AllowShortCaseLabelsOnASingleLine: false
|
||
|
IndentCaseLabels: true
|
||
|
|
||
|
|
||
|
# Spaces
|
||
|
SpaceAfterCStyleCast: false
|
||
|
SpacesInCStyleCastParentheses: false
|
||
|
SpaceAfterTemplateKeyword: true
|
||
|
SpaceBeforeAssignmentOperators: true
|
||
|
SpaceBeforeParens: ControlStatements
|
||
|
SpaceInEmptyParentheses: false
|
||
|
SpacesInAngles: false
|
||
|
SpacesInParentheses: false
|
||
|
SpacesInSquareBrackets: false
|
||
|
MaxEmptyLinesToKeep: 1
|
||
|
|
||
|
# OCD
|
||
|
SortUsingDeclarations: true
|
||
|
|
||
|
---
|
||
|
Language: Cpp
|
||
|
Standard: LS_Cpp11
|