diff --git a/helper-cli/src/main/kotlin/utils/PathExcludeGenerator.kt b/helper-cli/src/main/kotlin/utils/PathExcludeGenerator.kt index d42854eacd0de..16a4745da14c3 100644 --- a/helper-cli/src/main/kotlin/utils/PathExcludeGenerator.kt +++ b/helper-cli/src/main/kotlin/utils/PathExcludeGenerator.kt @@ -151,6 +151,7 @@ private val PATH_EXCLUDES_REASON_FOR_DIR_NAME = listOf( "*performance*" to BUILD_TOOL_OF, "*profiler*" to BUILD_TOOL_OF, "*test*" to TEST_OF, + ".circleci" to BUILD_TOOL_OF, ".github" to BUILD_TOOL_OF, ".gradle" to BUILD_TOOL_OF, ".idea" to BUILD_TOOL_OF, @@ -159,6 +160,7 @@ private val PATH_EXCLUDES_REASON_FOR_DIR_NAME = listOf( ".teamcity" to BUILD_TOOL_OF, ".travis" to BUILD_TOOL_OF, ".yarn" to BUILD_TOOL_OF, + "bamboo-specs" to BUILD_TOOL_OF, "bench" to TEST_OF, "benches" to TEST_OF, "benchmark" to TEST_OF, @@ -178,6 +180,7 @@ private val PATH_EXCLUDES_REASON_FOR_DIR_NAME = listOf( "jsdoc" to DOCUMENTATION_OF, "m4" to BUILD_TOOL_OF, "manual" to DOCUMENTATION_OF, + "perf" to TEST_OF, "scripts" to BUILD_TOOL_OF, "spec" to DOCUMENTATION_OF, "srcm4" to BUILD_TOOL_OF, @@ -203,9 +206,17 @@ private val PATH_EXCLUDE_REASON_FOR_FILENAME = listOf( "*.test.js" to TEST_OF, "*_test.go" to TEST_OF, "*coverage*.sh" to BUILD_TOOL_OF, + ".appveyor.yml" to BUILD_TOOL_OF, + ".bazelrc" to BUILD_TOOL_OF, + ".clang-format" to BUILD_TOOL_OF, + ".drone.yml" to BUILD_TOOL_OF, ".editorconfig" to PathExcludeReason.OTHER, ORT_REPO_CONFIG_FILENAME to BUILD_TOOL_OF, + ".gitlab-ci.yml" to BUILD_TOOL_OF, + ".jitpack.yml" to BUILD_TOOL_OF, + ".mailmap" to PathExcludeReason.OTHER, ".travis.yml" to BUILD_TOOL_OF, + ".zuul.yml" to BUILD_TOOL_OF, "BUILD" to BUILD_TOOL_OF, // Bazel "Build.PL" to BUILD_TOOL_OF, "CHANGELOG*" to BUILD_TOOL_OF, @@ -236,6 +247,8 @@ private val PATH_EXCLUDE_REASON_FOR_FILENAME = listOf( "RELEASE-NOTES*" to DOCUMENTATION_OF, "Rakefile*" to BUILD_TOOL_OF, "SECURITY.md" to DOCUMENTATION_OF, + "azure-pipelines.yml" to BUILD_TOOL_OF, + "bitbucket-pipelines.yml" to BUILD_TOOL_OF, "build" to BUILD_TOOL_OF, "build*.sh" to BUILD_TOOL_OF, "build.bat" to BUILD_TOOL_OF, @@ -245,7 +258,10 @@ private val PATH_EXCLUDE_REASON_FOR_FILENAME = listOf( "build.sbt" to BUILD_TOOL_OF, "changelog*" to BUILD_TOOL_OF, "checksrc.bat" to BUILD_TOOL_OF, + "codecov.yml" to BUILD_TOOL_OF, "codenarc.groovy" to BUILD_TOOL_OF, + "codeship-services.yml" to BUILD_TOOL_OF, + "codeship-steps.yml" to BUILD_TOOL_OF, "compile" to BUILD_TOOL_OF, "conanfile.py" to BUILD_TOOL_OF, "config.guess" to BUILD_TOOL_OF, @@ -265,6 +281,7 @@ private val PATH_EXCLUDE_REASON_FOR_FILENAME = listOf( "package-lock.json" to BUILD_TOOL_OF, "package.json" to BUILD_TOOL_OF, "proguard-rules.pro" to BUILD_TOOL_OF, + "renovate.json" to BUILD_TOOL_OF, "runsuite.c" to TEST_OF, "runtest.c" to TEST_OF, "settings.gradle" to BUILD_TOOL_OF,