Skip to content

Commit

Permalink
Clang format now works without String quotation.
Browse files Browse the repository at this point in the history
Signed-off-by: Cervenka Dusan <[email protected]>
  • Loading branch information
Hadatko committed Oct 17, 2023
1 parent a534e3c commit 3759249
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ AlignTrailingComments:
Kind: Always
OverEmptyLines: 0
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortBlocksOnASingleLine: "Never"
AllowShortFunctionsOnASingleLine: "Inline"
AllowShortIfStatementsOnASingleLine: "Never"
AllowShortBlocksOnASingleLine: Never
AllowShortFunctionsOnASingleLine: Inline
AllowShortIfStatementsOnASingleLine: Never
AllowShortLoopsOnASingleLine: false
AlwaysBreakBeforeMultilineStrings: true
BasedOnStyle: "Google"
BasedOnStyle: Google
#BinPackParameters : false
BreakBeforeBinaryOperators: "None"
BreakBeforeBraces: "Custom"
BreakBeforeBinaryOperators: None
BreakBeforeBraces: Custom
BreakBeforeTernaryOperators: false
ColumnLimit: 120
ContinuationIndentWidth: 4
Expand All @@ -20,43 +20,43 @@ DisableFormat: false
IndentCaseLabels: true
IndentWrappedFunctionNames: false
IndentWidth: 4
Language: "Cpp"
Language: Cpp
MaxEmptyLinesToKeep: 1
SpaceBeforeAssignmentOperators: true
SpaceBeforeParens: "ControlStatements"
SpaceBeforeParens: ControlStatements
SpacesBeforeTrailingComments: 1
SpacesInCStyleCastParentheses: false
SpacesInParentheses: false
Standard: "c++11"
Standard: c++11
TabWidth: 1
UseTab: "Never"
UseTab: Never
AccessModifierOffset: -4
AlignAfterOpenBracket: "Align"
AlignEscapedNewlines: "Left"
AlignOperands: "Align"
AlignAfterOpenBracket: Align
AlignEscapedNewlines: Left
AlignOperands: Align
AllowShortCaseLabelsOnASingleLine: false
AlwaysBreakAfterReturnType: "None"
AlwaysBreakTemplateDeclarations: "Yes"
BreakInheritanceList: "BeforeComma"
BreakConstructorInitializers: "BeforeComma"
AlwaysBreakAfterReturnType: None
AlwaysBreakTemplateDeclarations: Yes
BreakInheritanceList: BeforeComma
BreakConstructorInitializers: BeforeComma
CompactNamespaces: false
ConstructorInitializerAllOnOneLineOrOnePerLine: false
ConstructorInitializerIndentWidth: 0
Cpp11BracedListStyle: false
FixNamespaceComments: true
NamespaceIndentation: "None"
PointerAlignment: "Right"
SortIncludes: "CaseSensitive"
SortUsingDeclarations: "Lexicographic"
SpacesInAngles: "Never"
NamespaceIndentation: None
PointerAlignment: Right
SortIncludes: CaseSensitive
SortUsingDeclarations: Lexicographic
SpacesInAngles: Never
SpaceAfterCStyleCast: false
SpaceInEmptyParentheses: false
SpacesInSquareBrackets: false
KeepEmptyLinesAtTheStartOfBlocks: true
BraceWrapping:
AfterCaseLabel: true
AfterClass: true
AfterControlStatement: "Always"
AfterControlStatement: Always
AfterEnum: true
AfterFunction: true
AfterNamespace: false
Expand Down

0 comments on commit 3759249

Please sign in to comment.