From 90e128ae03b4ef8b7d281977b691df04290191df Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Fri, 23 Dec 2022 16:10:55 -0500 Subject: [PATCH] panfrost: Remove perfetto-specific .clang-format We'll use the one in src/panfrost/.clang-format instead, which isn't identical but should be good enough. This way they don't conflict with each other. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/panfrost/ds/.clang-format | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 src/panfrost/ds/.clang-format diff --git a/src/panfrost/ds/.clang-format b/src/panfrost/ds/.clang-format deleted file mode 100644 index 41203078b2b..00000000000 --- a/src/panfrost/ds/.clang-format +++ /dev/null @@ -1,21 +0,0 @@ -BasedOnStyle: WebKit -AlignTrailingComments: 'true' -AllowAllParametersOfDeclarationOnNextLine: 'false' -AllowShortFunctionsOnASingleLine: None -AlwaysBreakBeforeMultilineStrings: 'true' -BinPackArguments: 'false' -BinPackParameters: 'false' -BreakBeforeBinaryOperators: None -BreakBeforeBraces: Linux -ColumnLimit: '100' -Cpp11BracedListStyle: 'true' -KeepEmptyLinesAtTheStartOfBlocks: 'false' -NamespaceIndentation: None -PointerAlignment: Right -SortIncludes: 'true' -SpaceAfterTemplateKeyword: 'false' -Standard: Cpp11 -TabWidth: '3' -IndentWidth: '3' -ConstructorInitializerIndentWidth: '3' -ContinuationIndentWidth: '3'