[pulp_riscv_dbg] Exclude Upstream .clang-format
Signed-off-by: Sam Elliott <selliott@lowrisc.org>
diff --git a/hw/vendor/pulp_riscv_dbg.vendor.hjson b/hw/vendor/pulp_riscv_dbg.vendor.hjson
index abd341d..28eef76 100644
--- a/hw/vendor/pulp_riscv_dbg.vendor.hjson
+++ b/hw/vendor/pulp_riscv_dbg.vendor.hjson
@@ -20,5 +20,7 @@
exclude_from_upstream: [
"src/dm_top.sv",
"src_files.yml",
+ # We always exclude .clang-format from upstream repos
+ "tb/.clang-format",
]
}
diff --git a/hw/vendor/pulp_riscv_dbg/tb/.clang-format b/hw/vendor/pulp_riscv_dbg/tb/.clang-format
deleted file mode 100644
index ab4772e..0000000
--- a/hw/vendor/pulp_riscv_dbg/tb/.clang-format
+++ /dev/null
@@ -1,35 +0,0 @@
----
-BasedOnStyle: LLVM
-IndentWidth: 4
-UseTab: Never
-BreakBeforeBraces: Linux
-AlwaysBreakBeforeMultilineStrings: true
-AllowShortIfStatementsOnASingleLine: false
-AllowShortLoopsOnASingleLine: false
-AllowShortFunctionsOnASingleLine: false
-IndentCaseLabels: false
-AlignEscapedNewlinesLeft: false
-AlignTrailingComments: true
-AlignOperands: true
-AllowAllParametersOfDeclarationOnNextLine: false
-AlignAfterOpenBracket: true
-SpaceAfterCStyleCast: false
-MaxEmptyLinesToKeep: 2
-BreakBeforeBinaryOperators: NonAssignment
-BreakStringLiterals: false
-SortIncludes: false
-ContinuationIndentWidth: 4
-ColumnLimit: 80
-IndentPPDirectives: AfterHash
-BinPackArguments: true
-BinPackParameters: true
-ForEachMacros:
- - 'TAILQ_FOREACH'
- - 'TAILQ_FOREACH_REVERSE'
-BreakBeforeBinaryOperators: None
-MaxEmptyLinesToKeep: 1
-AlwaysBreakAfterDefinitionReturnType: None
-AlwaysBreakAfterReturnType: None
-AlwaysBreakBeforeMultilineStrings: false
-AlignConsecutiveAssignments: true
-...