-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
google_checks.xml not allowing eol left curly for switch statement with lambda-like construct #15831
Comments
@bradleylarrick, please reproduce by CLI it helps us a lot. @Zopsss , please take a look |
Ran
against this source file:
Returned:
|
This was fix 5b301c7#diff-8e4bfd0f5535171a324423e3cc959fc50f3c7759555973e6084110dae5f1fd20R22 This is intentional behavior and should matching to google-java-format. @bradleylarrick , please recheck how https://github.com/google/google-java-format behave on your code. Is supposed to put |
I ran the test class through google-java-format-1.24.0 and got this:
Running the audit on this new file returned this:
|
@bradleylarrick, do you agree that we should fix false positives of WhitespaceAround? That we see in checkstyle execution after auto formatting. |
Formatter converted
into
this might be a bug in the formatter, as it is not obeying style guide's rule
from our side, the LeftCurlyNl violation was correct. |
We should fix this, this is a false-positive and we were unable to detect it at #15338 |
We have checkstyle/src/main/resources/google_checks.xml Lines 127 to 130 in ca693c7
but it is still giving error for it. After modifying $ diff -u og_suppression.xml modified_suppression.xml
--- og_suppression.xml 2024-10-30 12:03:24.085742000 +0530
+++ modified_suppression.xml 2024-10-30 12:03:38.686326100 +0530
@@ -1,7 +1,7 @@
<module name="SuppressionXpathSingleFilter">
<property name="checks" value="WhitespaceAround"/>
<property name="query" value="//*[self::LITERAL_IF or self::LITERAL_ELSE or self::STATIC_INIT
- or self::LITERAL_TRY or self::LITERAL_CATCH]/SLIST[count(./*)=1]
- | //*[self::STATIC_INIT or self::LITERAL_TRY or self::LITERAL_IF]
+ or self::LITERAL_TRY or self::LITERAL_CATCH or LITERAL_DEFAULT]/SLIST[count(./*)=1]
+ | //*[self::STATIC_INIT or self::LITERAL_TRY or self::LITERAL_IF or LITERAL_DEFAULT]
//*[self::RCURLY][parent::SLIST[count(./*)=1]]"/>
</module> The false-positive violation got suppressed. /** Test. */
public class Test {
/** Test. */
public static void main(String[] args) {
switch (ch) {
default -> {}
}
}
}
|
Agree on fixing false positive around WhitespaceAround. |
Looks like we need to activate this new property that we just released |
@bradleylarrick, can you try to change config on your local and run over all your sources to let us catch all use cases. |
I ran google-java-format-1.24.0 on another projects, and the ran checkstyle-10.19.0. This code:
generated the following warnings:
|
Line 319, 323, 327 violation seems correct to me. Line 331 violations are false positives, I've provided solution for it in above comment or as @romani said in above comments, we can solve it by enabling |
If someone around keyboard and can send PR with fix, I can release it right after merging. |
…rty of WhitespaceAround in google_checks.xml
…rty of WhitespaceAround in google_checks.xml
Thanks a lot @Zopsss , for quick fix. @mahfouz72 , your feature is not only life but now in high usage. @bradleylarrick , fix is released 10.20.0 , by same day delivery. |
I found a couple more false positives.
Warnings were:
And:
Generated:
|
@bradleylarrick, please create new issue. |
I'm getting the warning '(extension) LeftCurlyNl: '{' at column 20 should be on a new line' on a switch statement using lambda-like construct (line 7 below):
Using the latest checkstyle-plugin and checkstyle versions:
The text was updated successfully, but these errors were encountered: