Create project skeleton

This commit is contained in:
2022-11-21 11:49:21 +00:00
commit abc98edac9
6 changed files with 747 additions and 0 deletions

22
.clang-format Normal file
View File

@@ -0,0 +1,22 @@
---
BasedOnStyle: WebKit
AlignAfterOpenBracket: false
AlignConsecutiveMacros: false
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignEscapedNewlines: DontAlign
AlignOperands: false
AlignTrailingComments: false
TabWidth: 4
UseTab: ForIndentation
DerivePointerAlignment: false
PointerAlignment: Right
BinPackArguments: false
BinPackParameters: false
ExperimentalAutoDetectBinPacking: false
AllowAllArgumentsOnNextLine: false
AllowAllParametersOfDeclarationOnNextLine: false
AllowShortFunctionsOnASingleLine: None
ColumnLimit: 80
PenaltyReturnTypeOnItsOwnLine: 0
...