https://github.com/DavidJourdan/shrink-morph
Raw File
Tip revision: ff449f8805685122cd6192fd6e21eadae8d97a70 authored by David Jourdan on 26 February 2024, 19:02:51 UTC
remove unused
Tip revision: ff449f8
.clang-format
---
Language: Cpp
BasedOnStyle: LLVM
AlignConsecutiveMacros: false
AllowAllArgumentsOnNextLine: true
AllowAllConstructorInitializersOnNextLine: true
AllowAllParametersOfDeclarationOnNextLine: false
AllowShortFunctionsOnASingleLine: Inline
AllowShortIfStatementsOnASingleLine: Never
AllowShortLambdasOnASingleLine: All
AllowShortLoopsOnASingleLine: false
AlwaysBreakTemplateDeclarations: Yes
BinPackArguments: true
BinPackParameters: false
BraceWrapping:
  AfterCaseLabel:  true
  AfterClass:      true
  AfterControlStatement: true
  AfterEnum:       false
  AfterFunction:   true
  AfterNamespace:  true
  AfterStruct:     true
  AfterUnion:      true
  AfterExternBlock: true
  BeforeCatch:     true
  BeforeElse:      true
  IndentBraces:    false
  SplitEmptyFunction: false
  SplitEmptyRecord: false
  SplitEmptyNamespace: false
BreakBeforeBinaryOperators: None
BreakBeforeBraces: Custom
ColumnLimit:   120
ConstructorInitializerAllOnOneLineOrOnePerLine: true
IncludeBlocks:   Regroup
IncludeCategories:
  - Regex:           '<[[:alnum:].]+>'
    Priority:        3
  - Regex:           '^(<[[:alnum:].]+/[[:alnum:].]+)'
    Priority:        2
  - Regex:           '.*'
    Priority:        1
PointerAlignment: Left
SpaceBeforeParens: Never
SpaceBeforeRangeBasedForLoopColon: false
SpacesInCStyleCastParentheses: false
SpacesInParentheses: false
SpacesInSquareBrackets: false
Standard:        Cpp11
TabWidth:        2
UseTab:          Never
...
back to top