mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
24 lines
562 B
YAML
24 lines
562 B
YAML
# .clang-format file for U++ framework
|
|
|
|
---
|
|
BasedOnStyle: LLVM
|
|
UseTab: AlignWithSpaces
|
|
IndentWidth: 4
|
|
TabWidth: 4
|
|
ColumnLimit: 96
|
|
---
|
|
Language: Cpp
|
|
AccessModifierOffset: -4
|
|
AllowShortFunctionsOnASingleLine: All
|
|
AlwaysBreakTemplateDeclarations: true
|
|
BreakBeforeBraces: Stroustrup
|
|
BreakConstructorInitializers: BeforeComma
|
|
CompactNamespaces: true
|
|
DerivePointerAlignment: false
|
|
IfMacros: ['ONCELOCK']
|
|
PointerAlignment: Left
|
|
SpaceBeforeParens: Custom
|
|
SpaceBeforeParensOptions:
|
|
AfterControlStatements: false
|
|
IndentAccessModifiers: false
|
|
IndentPPDirectives: None
|