From 7c43c90213ea7c4adf3767d65999d71182e95660 Mon Sep 17 00:00:00 2001 From: Denis Tereshkin Date: Sun, 25 May 2025 18:32:10 +0700 Subject: [PATCH] Add clang-format config --- .clang-format | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .clang-format diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..b5f482d --- /dev/null +++ b/.clang-format @@ -0,0 +1,13 @@ +--- +BreakBeforeBraces: Allman +TabWidth: 4 +IndentWidth: 4 +BinPackArguments: false +BinPackParameters: false +BraceWrapping: + SplitEmptyFunction: false + SplitEmptyRecord: false +SeparateDefinitionBlocks: Always +AllowShortFunctionsOnASingleLine: None + +