A first attempt to make dialogue capability for module
This commit is contained in:
parent
8187d045cd
commit
ab9a0af05e
8 changed files with 190 additions and 30 deletions
52
.clang-format
Normal file
52
.clang-format
Normal file
|
@ -0,0 +1,52 @@
|
|||
BasedOnStyle: Google
|
||||
|
||||
# === Indentation ===
|
||||
IndentWidth: 4
|
||||
TabWidth: 4
|
||||
UseTab: Never
|
||||
|
||||
# === Pointer/Reference Alignment ===
|
||||
DerivePointerAlignment: false
|
||||
PointerAlignment: Left
|
||||
|
||||
# === Braces ===
|
||||
BraceWrapping:
|
||||
AfterClass: false
|
||||
AfterControlStatement: false
|
||||
AfterEnum: false
|
||||
AfterFunction: false
|
||||
AfterNamespace: false
|
||||
AfterStruct: false
|
||||
BeforeCatch: false
|
||||
BeforeElse: false
|
||||
IndentBraces: false
|
||||
|
||||
# === Spaces ===
|
||||
SpaceBeforeParens: ControlStatements
|
||||
SpaceAfterCStyleCast: false
|
||||
SpaceBeforeAssignmentOperators: true
|
||||
SpacesInParentheses: false
|
||||
SpacesInSquareBrackets: false
|
||||
SpacesInAngles: false
|
||||
|
||||
# === Line Breaking ===
|
||||
AllowShortFunctionsOnASingleLine: Empty
|
||||
AllowShortIfStatementsOnASingleLine: false
|
||||
BreakBeforeBraces: Attach
|
||||
ColumnLimit: 120
|
||||
|
||||
# === Includes ===
|
||||
IncludeBlocks: Preserve
|
||||
IncludeCategories:
|
||||
- Regex: '.*'
|
||||
Priority: 1
|
||||
SortIncludes: false
|
||||
|
||||
# === Misc ===
|
||||
AlignAfterOpenBracket: Align
|
||||
AlwaysBreakTemplateDeclarations: Yes
|
||||
Cpp11BracedListStyle: true
|
||||
|
||||
# === Constructor ===
|
||||
ConstructorInitializerIndentWidth: 4
|
||||
BreakConstructorInitializers: AfterColon
|
Loading…
Add table
Add a link
Reference in a new issue