-
Notifications
You must be signed in to change notification settings - Fork 725
SONARJAVA-6525 Decrease FPs for the rule S117 #5710
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
Open
asya-vorobeva
wants to merge
3
commits into
master
Choose a base branch
from
asya/improve-s117
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
73 changes: 73 additions & 0 deletions
73
...-sources/default/src/main/files/non-compiling/checks/BadLocalVariableNameCheckSample.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| import java.util.function.IntUnaryOperator; | ||
|
|
||
| class BadLocalVariableName { | ||
|
|
||
| // Instance/class fields are not checked by this rule at all, regardless of underscores | ||
| int _instanceField; | ||
| static int _staticField; | ||
|
|
||
| BadLocalVariableName( | ||
| int godParam, | ||
| int BAD_CONSTRUCTOR_PARAM, // Noncompliant {{Rename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'.}} | ||
| // ^^^^^^^^^^^^^^^^^^^^^ | ||
| int _goodConstructorParam // Noncompliant {{Rename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'.}} | ||
| // ^^^^^^^^^^^^^^^^^^^^^ | ||
| ) {} | ||
|
|
||
| void method( | ||
| int goodParam, | ||
| int BAD_FORMAL_PARAMETER, // Noncompliant {{Rename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'.}} | ||
| // ^^^^^^^^^^^^^^^^^^^^ | ||
| int _goodParam // Noncompliant {{Rename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'.}} | ||
| // ^^^^^^^^^^ | ||
| ) { | ||
| int BAD; // Noncompliant | ||
| int good; | ||
| int _good; // Compliant, leading underscore stripped before check | ||
| int good_; // Compliant, trailing underscore stripped before check | ||
| int __myVar__; // Compliant, surrounding underscores stripped before check | ||
| int _BAD; // Noncompliant {{Rename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'.}} | ||
| // ^^^^ | ||
| int BAD_; // Noncompliant {{Rename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'.}} | ||
| // ^^^^ | ||
|
|
||
| for (int I = 0; I < 10; I++) { | ||
| int D; // Noncompliant | ||
| } | ||
|
|
||
| for (good = 0; good < 10; good++) { | ||
| } | ||
|
|
||
| try (Closeable BAD_RESOURCE = open()) { // Noncompliant | ||
| } catch (IOException BAD_EXCEPTION) { // Noncompliant | ||
| } catch (IllegalStateException E) { // compliant | ||
| } catch (Exception EX) { // Noncompliant | ||
| } | ||
| } | ||
|
|
||
| Object FIELD_SHOULD_NOT_BE_CHECKED = new Object(){ | ||
| { | ||
| int BAD; // Noncompliant | ||
| } | ||
| }; | ||
|
|
||
| void forEachMethod() { | ||
| int MY_CONSTANT_IS_NOT_A_CONSTANT = 21; // Noncompliant | ||
| final int MY_LOCAL_CONSTANT = 42; // Compliant | ||
| final String MY_OTHER_LOCAL_CONSTANT = "42"; // Compliant | ||
| final Integer MY_ALTERNATE_CONSTANT = Integer.valueOf(42); // Compliant | ||
| for (byte C : "".getBytes()) { | ||
| int D; // Noncompliant | ||
| } | ||
| } | ||
|
|
||
| void foo() { | ||
| IntUnaryOperator f1 = (int _) -> 0; // Compliant, unnamed variable | ||
| IntUnaryOperator f2 = _ -> 0; // Compliant, unnamed variable | ||
| } | ||
|
|
||
| // Method names are not checked by this rule | ||
| void _underscoreMethod() { | ||
| int good; | ||
| } | ||
| } |
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 0 additions & 45 deletions
45
java-checks/src/test/files/checks/naming/BadLocalVariableNameNoncompliant.java
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.