Pankraz76
Pankraz76
``` PR Description grepped:00:00 You introduce new Check00:00 --- .ci-temp/verify-no-exception-configs/web.txt 2025-04-27 10:19:58.582542273 +000000:00 +++ .ci-temp/verify-no-exception-configs/file.txt 2025-04-27 10:19:58.590542301 +000000:00 @@ -183,6 +183,7 @@00:00 UnusedCatchParameterShouldBeUnnamed00:00 UnusedImports00:00 UnusedLambdaParameterShouldBeUnnamed00:00 +UnusedLocalMethod00:00 UnusedLocalVariable00:00 UpperEll00:00 VariableDeclarationUsageDistance00:00 Please...
``` ERROR: Error installing mdl: The last version of mixlib-shellout (>= 0) to support your Ruby & RubyGems was 3.3.8. Try installing it with `gem install mixlib-shellout -v 3.3.8` and...
When is this coming? Quick fixes applied by this recipe would be very helpful in reducing the boilerplate.
- https://github.com/openrewrite/rewrite-static-analysis/pull/367
`StringIndexOutOfBoundsException: Index -2 out of bounds for length 3331` ``` Using active styles [org.openrewrite.java.Checkstyle] Scanned 168 Java sources in :spring-websocket/main Scanned 75 Java sources in :spring-websocket/test Scanning sources in project...
`org.openrewrite.xml.XmlParsingException` ``` framework-docs/src/main/kotlin/org/springframework/docs/testing/mockmvc/assertj/mockmvctestersetup/AccountController.kt There were problems parsing framework-docs/src/main/kotlin/org/springframework/docs/testing/mockmvc/assertj/mockmvctesterrequests/HotelControllerTests.kt Error during rewrite run org.openrewrite.xml.XmlParsingException: Syntax error in /Users/I753089/IdeaProjects/spring-framework/framework-docs/src/main/resources/org/springframework/docs/integration/cache/cachestoreconfigurationjsr107/CacheConfiguration.xml at line 13:26 token recognition error at: '.'. at org.openrewrite.xml.XmlParser$ForwardingErrorListener.syntaxError(XmlParser.java:140) at org.antlr.v4.runtime.ProxyErrorListener.syntaxError(ProxyErrorListener.java:41) at...
what about automating this and using `errorprone.refasterrules`? They offer quite the same, even fixing the violations unlike PMD, making the integration smooth. - https://github.com/pmd/pmd/pull/5956 - https://github.com/checkstyle/checkstyle/pull/17490 - https://github.com/apache/maven/issues/11010 - https://github.com/apache/maven-parent/issues/491...
is the [ConstantNaming](https://error-prone.picnic.tech/bugpatterns/ConstantNaming) rule something we like to integrate? - https://github.com/diffplug/spotless/pull/2687 - https://github.com/diffplug/spotless/pull/2664 - https://github.com/junit-team/junit-framework/pull/5006
> `UnusedLocalVariable` are plain wrong imho convention tells them to be named accordingly like unused or ignored just like error-prone does. - https://maven.apache.org/ref/3.9.11/maven-core/xref/org/apache/maven/lifecycle/internal/MojoExecutor.html#L313 - `lock` is not used and not...
> and calling it `unused` would be wrong imho. Yes, also allowed to be called `ignored` then. In this case — actually, also in general, imho — that might be...