From 8fe52979336c635ae7fa38a1494b499320eae8c3 Mon Sep 17 00:00:00 2001 From: apio Date: Tue, 14 Jun 2022 16:13:03 +0200 Subject: [PATCH] clang-format file --- .clang-format | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .clang-format diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..43a67ab --- /dev/null +++ b/.clang-format @@ -0,0 +1,15 @@ +--- +BasedOnStyle: Microsoft +AlignAfterOpenBracket: Align +AllowShortIfStatementsOnASingleLine: Always +AllowShortLambdasOnASingleLine: All +AllowShortLoopsOnASingleLine: 'true' +PointerAlignment: Left +SpaceAfterCStyleCast: 'false' +SpaceAfterTemplateKeyword: 'false' +SpacesInCStyleCastParentheses: 'false' +SpacesInSquareBrackets: 'false' +TabWidth: '4' +UseTab: ForIndentation + +...