Comment options

This commit is contained in:
Cory Balaton 2023-10-23 12:43:48 +02:00
parent d2824d7c1d
commit 9c4e99a327
No known key found for this signature in database
GPG Key ID: 3E5FCEBFD80F432B

View File

@ -1,9 +1,44 @@
# Set the language to C++
Language: Cpp
# Set the language standard to C++11
Standard: Cpp11
# Never use tab for indentation
UseTab: Never UseTab: Never
# Set the indent width to be 4 columns
IndentWidth: 4 IndentWidth: 4
# Set tab width to be 4 columns
TabWidth: 4 TabWidth: 4
# Set access modifier (public, private, protected) offset to indent left
AccessModifierOffset: -4 AccessModifierOffset: -4
# Stop indentation of access modifiers
IndentAccessModifiers: false IndentAccessModifiers: false
# Don't allow a function to be defined on a single line
AllowShortFunctionsOnASingleLine: false AllowShortFunctionsOnASingleLine: false
BreakBeforeBraces: Linux
# Set the column limit to 80 characters
ColumnLimit: 80
# If an expression has to be split, then split before binary operators unless
# it's an assignment operator.
BreakBeforeBinaryOperators: NonAssignment BreakBeforeBinaryOperators: NonAssignment
ColumnLimit: 79
# Use a Linux style brace break.
# Break before braces on function, namespace and class definitions.
BreakBeforeBraces: Linux
# If true, spaces will be inserted after ( and before ).
SpacesInParentheses: false
# If true, spaces will be inserted after [ and before ].
SpacesInSquareBrackets: false
# Separate definition blocks (classes, functions, structs, enums)
SeparateDefinitionBlocks: Always