From 23442d0c9e916cc6dac8a306ba00468a5767e3f4 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 25 Sep 2023 21:57:40 -0400 Subject: [PATCH] Add .clang-format to .gitignore because it's generated by ECM --- .clang-format | 33 --------------------------------- .gitignore | 1 + 2 files changed, 1 insertion(+), 33 deletions(-) delete mode 100644 .clang-format diff --git a/.clang-format b/.clang-format deleted file mode 100644 index e8c9a89..0000000 --- a/.clang-format +++ /dev/null @@ -1,33 +0,0 @@ ---- -AllowShortIfStatementsOnASingleLine: Never -CompactNamespaces: 'false' -DisableFormat: 'false' -IndentCaseLabels: 'true' -IndentPPDirectives: BeforeHash -IndentWidth: '4' -Language: Cpp -NamespaceIndentation: All -PointerAlignment: Left -ReflowComments: 'true' -SortIncludes: 'true' -SortUsingDeclarations: 'true' -SpacesInCStyleCastParentheses: 'false' -Standard: Cpp11 -TabWidth: '0' -UseTab: Never -AllowShortEnumsOnASingleLine: false -BraceWrapping: - AfterEnum: true -AccessModifierOffset: -4 -SpaceAfterTemplateKeyword: 'false' -AllowAllParametersOfDeclarationOnNextLine: false -AlignAfterOpenBracket: AlwaysBreak -BinPackArguments: false -BinPackParameters: false -ColumnLimit: 120 -AllowShortBlocksOnASingleLine: 'false' -AllowShortCaseLabelsOnASingleLine: 'false' -AllowShortFunctionsOnASingleLine: 'Empty' -AllowShortLambdasOnASingleLine: 'Empty' -AllowShortLoopsOnASingleLine: 'false' -SeparateDefinitionBlocks: 'Always' \ No newline at end of file diff --git a/.gitignore b/.gitignore index a56f946..b51e39c 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ build/* .idea/ .directory +.clang-format \ No newline at end of file