Initial commit

This is working repository now. I had to clean this up due to
my f_ups, that made this simple repo around 200MB large.

Signed-off-by: Piotr Krygier <piotrkrygier@everyonecancode@xyz>
This commit is contained in:
Piotr Krygier
2022-06-28 09:54:41 +02:00
committed by Piotr Krygier
commit 493afb05e6
56 changed files with 5574 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
BasedOnStyle: Google
IndentWidth: 4
# Add missing namespace comment on the closing bracket
FixNamespaceComments: true
# Do not indent everything in namespace
NamespaceIndentation: None
# Disable single line functions
AllowShortFunctionsOnASingleLine: None
# Braces configuration
BreakBeforeBraces: Custom
BraceWrapping:
AfterCaseLabel: true
AfterClass: false
AfterControlStatement: Never
AfterEnum: true
AfterFunction: true
AfterNamespace: true
AfterStruct: true
AfterUnion: true
AfterExternBlock: true
BeforeCatch: false
BeforeElse: false
ColumnLimit: 120
# Pointer star next to type, not variable name
DerivePointerAlignment: false
PointerAlignment: Left
# Function parameters Alignment
AlignAfterOpenBracket: Align
AllowAllArgumentsOnNextLine: false
AllowAllParametersOfDeclarationOnNextLine: false
BinPackArguments: false
BinPackParameters: OnePerLine