[2.x] Remove `whitesource` from LintUnused (#9064)

This commit is contained in:
kenji yoshida 2026-04-12 02:39:02 +09:00 committed by GitHub
parent 2e0a724c63
commit 6fe83aa021
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ object LintUnused {
keyName => includes(keyName)
},
lintExcludeFilter := {
val excludedPrefixes = List("release", "sonatype", "watch", "whitesource")
val excludedPrefixes = List("release", "sonatype", "watch")
val excludes = excludeLintKeys.value.map(_.scopedKey.key.label)
keyName => excludes(keyName) || excludedPrefixes.exists(keyName.startsWith(_))
},