He-Pin opened a new pull request, #1071: URL: https://github.com/apache/pekko-http/pull/1071
### Motivation sbt lint reported 45 unused keys (`projectInfoVersion`, `mimaReportSignatureProblems`, `autoAPIMappings`, `unidocProjectFilter`) across sub-projects. These keys are intentionally set in `Common.scala` and `Doc.scala` plugins with `allRequirements` trigger but are only read in specific scopes, causing spurious lint warnings. ### Modification Add `projectInfoVersion`, `mimaReportSignatureProblems`, `autoAPIMappings`, and `unidocProjectFilter` to `excludeLintKeys` in `project/Common.scala` `globalSettings`. ### Result All 45 sbt lint warnings resolved with a single centralized exclusion in the common plugin. ### Tests - `sbt "http-core / compile; http / compile; parsing / compile"` - no sbt lint warnings - `sbt "http-caching / compile; http-cors / compile; http-testkit / compile; http-marshallers-scala / compile; http-marshallers-java / compile"` - no sbt lint warnings ### References None - build configuration cleanup -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
