From dd0831361db84de2543a762a90022deb396e7e54 Mon Sep 17 00:00:00 2001 From: Wunkolo <Wunkolo@gmail.com> Date: Wed, 14 Jun 2023 21:36:30 -0700 Subject: [PATCH 1/2] Add `.clang-format` Use the command `clang-format -i tests/**/*.c src/**/*.cpp include/**/*.hpp` to process all of the project's files. Using the one from [pcsx-redux](https://github.com/grumpycoders/pcsx-redux/blob/main/src/.clang-format) as a basis and then made additional edits to be the _least_ disruptive to the pre-existing formatting patterns. --- .clang-format | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .clang-format diff --git a/.clang-format b/.clang-format new file mode 100644 index 00000000..9049d7a0 --- /dev/null +++ b/.clang-format @@ -0,0 +1,14 @@ +BasedOnStyle: Google +IndentWidth: 4 +ColumnLimit: 120 +AccessModifierOffset: -2 +TabWidth: 4 +NamespaceIndentation: All +UseTab: ForContinuationAndIndentation +AllowShortEnumsOnASingleLine: false +AllowShortCaseLabelsOnASingleLine: true +AllowShortFunctionsOnASingleLine: false +AllowShortIfStatementsOnASingleLine: false +Cpp11BracedListStyle: true +PackConstructorInitializers: BinPack +AlignAfterOpenBracket: BlockIndent From 9095bf4445494f0b63020ce950663598ede58411 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Thu, 15 Jun 2023 11:44:49 +0300 Subject: [PATCH 2/2] Update .clang-format --- .clang-format | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.clang-format b/.clang-format index 9049d7a0..8251730f 100644 --- a/.clang-format +++ b/.clang-format @@ -5,10 +5,10 @@ AccessModifierOffset: -2 TabWidth: 4 NamespaceIndentation: All UseTab: ForContinuationAndIndentation -AllowShortEnumsOnASingleLine: false +AllowShortEnumsOnASingleLine: true AllowShortCaseLabelsOnASingleLine: true -AllowShortFunctionsOnASingleLine: false -AllowShortIfStatementsOnASingleLine: false +AllowShortFunctionsOnASingleLine: true +AllowShortIfStatementsOnASingleLine: true Cpp11BracedListStyle: true PackConstructorInitializers: BinPack AlignAfterOpenBracket: BlockIndent