game-of-life-cpp/.clang-format

14 lines
351 B
Plaintext
Raw Normal View History

2020-12-16 19:59:21 +01:00
---
BasedOnStyle: LLVM
AllowShortBlocksOnASingleLine: 'true'
AllowShortCaseLabelsOnASingleLine: 'true'
AllowShortFunctionsOnASingleLine: Inline
AllowShortIfStatementsOnASingleLine: WithoutElse
AllowShortLambdasOnASingleLine: Inline
AllowShortLoopsOnASingleLine: 'false'
AlwaysBreakBeforeMultilineStrings: 'true'
IndentWidth: '4'
2020-12-16 20:05:39 +01:00
ColumnLimit: 100
2020-12-16 19:59:21 +01:00
...