From dd0831361db84de2543a762a90022deb396e7e54 Mon Sep 17 00:00:00 2001 From: Wunkolo Date: Wed, 14 Jun 2023 21:36:30 -0700 Subject: [PATCH] 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