cpp-template/.clang-format

15 lines
378 B
Plaintext
Raw Permalink Normal View History

2020-12-02 19:38:53 +01:00
---
BasedOnStyle: LLVM
2021-03-16 18:01:48 +01:00
AllowShortBlocksOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: None
2020-12-02 19:38:53 +01:00
AllowShortIfStatementsOnASingleLine: WithoutElse
AllowShortLambdasOnASingleLine: Inline
2021-03-16 18:01:48 +01:00
AllowShortLoopsOnASingleLine: false
AlwaysBreakBeforeMultilineStrings: true
AlwaysBreakTemplateDeclarations: true
IndentWidth: 4
ColumnLimit: 100
2020-12-02 19:38:53 +01:00
...