diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-08-09 11:41:41 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-08-09 11:41:41 +0200 |
commit | 4f6a1e071de9350954a2e2550e59e047cf5ac753 (patch) | |
tree | 72041cfb2074c6d4bae1a314e31704e0aaa54a68 /.clang-format | |
parent | 500d98852abfafcf058bf53be5b1bce52eaac6c0 (diff) |
removed lots of code and added clang-format
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..03e38c9 --- /dev/null +++ b/.clang-format @@ -0,0 +1,14 @@ +--- +AccessModifierOffset: 0 +BasedOnStyle: LLVM +BreakBeforeBraces: Attach +ColumnLimit: 100 +IndentWidth: '4' +Language: Cpp +Standard: Cpp11 +TabWidth: '4' +UseTab: Always + +... + +# vim: ft=yaml |