Update .clang-format

This commit is contained in:
EpochFlame 2024-01-01 11:35:29 -05:00
parent a610eb29b6
commit 25eccb9de3

View File

@ -1,19 +1,30 @@
BasedOnStyle: WebKit Language: Cpp
BasedOnStyle: WebKit
ColumnLimit: 140 ColumnLimit: 140
SortIncludes: false
IndentWidth: 4
TabWidth: 4
UseTab: ForIndentation
NamespaceIndentation: None
FixNamespaceComments: true
CompactNamespaces: false
AlignTrailingComments: true AlignTrailingComments: true
AlignAfterOpenBracket: true AlignAfterOpenBracket: true
AlignConsecutiveAssignments: true AlignConsecutiveAssignments: true
AllowShortFunctionsOnASingleLine: true
FixNamespaceComments: true
IndentWidth: 4
TabWidth: 4
UseTab: ForIndentation
SortIncludes: false
AlignConsecutiveMacros: true AlignConsecutiveMacros: true
AlignEscapedNewlines: Left AlignEscapedNewlines: Left
AlignOperands: true AlignOperands: AlignAfterOperator
AllowShortFunctionsOnASingleLine: true
AllowShortIfStatementsOnASingleLine: Never AllowShortIfStatementsOnASingleLine: Never
Cpp11BracedListStyle: false Cpp11BracedListStyle: false
Language: Cpp
CompactNamespaces: false AlwaysBreakTemplateDeclarations: true
NamespaceIndentation: None BreakStringLiterals: true
ReflowComments: true