Skip to content

Commit

Permalink
feat(helper-cli): Extend path exclude generator by a couple of patterns
Browse files Browse the repository at this point in the history
These filenames / patterns seem to be common in the NuGet space.

Signed-off-by: Frank Viernau <[email protected]>
  • Loading branch information
fviernau committed Nov 9, 2023
1 parent 552b0e2 commit f06a4ac
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions helper-cli/src/main/kotlin/utils/PathExcludeGenerator.kt
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ private val PATH_EXCLUDES_REASON_FOR_DIR_NAME = listOf(
".gradle" to BUILD_TOOL_OF,
".idea" to BUILD_TOOL_OF,
".mvn" to BUILD_TOOL_OF,
".nuget" to BUILD_TOOL_OF,
".teamcity" to BUILD_TOOL_OF,
".travis" to BUILD_TOOL_OF,
".yarn" to BUILD_TOOL_OF,
Expand Down Expand Up @@ -235,8 +236,11 @@ private val PATH_EXCLUDE_REASON_FOR_FILENAME = listOf(
"RELEASE-NOTES*" to DOCUMENTATION_OF,
"Rakefile*" to BUILD_TOOL_OF,
"SECURITY.md" to DOCUMENTATION_OF,
"build" to BUILD_TOOL_OF,
"build*.sh" to BUILD_TOOL_OF,
"build.bat" to BUILD_TOOL_OF,
"build.gradle" to BUILD_TOOL_OF,
"build.proj" to BUILD_TOOL_OF,
"build.rs" to BUILD_TOOL_OF, // Rust build script.
"build.sbt" to BUILD_TOOL_OF,
"changelog*" to BUILD_TOOL_OF,
Expand Down

0 comments on commit f06a4ac

Please sign in to comment.