diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-03 11:01:00 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-03 11:01:00 +0200 |
commit | 690c853da8b50faa366ff42d9b32b32c841e7211 (patch) | |
tree | a2343570435e75bfd37025c3cedff3aceb033a53 /.clang-format | |
parent | ff078630f3420a03cf8d9432cc7a96f249db5573 (diff) |
more scaffolding
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..5d233eb --- /dev/null +++ b/.clang-format @@ -0,0 +1,27 @@ +--- +AccessModifierOffset: -4 +AllowShortIfStatementsOnASingleLine: AllIfsAndElse +AllowShortLoopsOnASingleLine: true +BasedOnStyle: LLVM +BreakBeforeBraces: Attach +ColumnLimit: 80 +EmptyLineBeforeAccessModifier: Always +IndentAccessModifiers: false +IndentCaseLabels: true +IndentWidth: 4 +Language: Cpp +Standard: Cpp11 +TabWidth: 4 +UseTab: Always +PointerAlignment: Middle +SpaceAfterCStyleCast: true +AlignConsecutiveAssignments: + Enabled: false +AlignTrailingComments: + Kind: Never +ReflowComments: false +AlignEscapedNewlines: DontAlign +BreakBeforeBinaryOperators: All +... + +# vim: ft=yaml |