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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user