From 943e321a85eac6aecdbb1125c04a77663c62510c Mon Sep 17 00:00:00 2001 From: jasmine Date: Fri, 9 Aug 2024 22:42:21 +0800 Subject: [PATCH] fmt: create rules --- .clang-format | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .clang-format diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..1c735aa --- /dev/null +++ b/.clang-format @@ -0,0 +1,7 @@ +--- +BasedOnStyle: LLVM +AlignConsecutiveMacros: true +AllowShortCaseLabelsOnASingleLine: true +ColumnLimit: 120 +IndentCaseLabels: true +...