-
-
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
ignoreFieldDeclaration
property should have the highest priority in MagicNumberCheck
#16101
Comments
ignoreFieldDeclaration
property should Have the highest priority in MagicNumberCheckignoreFieldDeclaration
property should have the highest priority in MagicNumberCheck
@romani what is the status for this issue?? let me know?? are the contributions still active for this project?? |
contributors are whole world Java community, please step in, make comment "I am on it" and simply send PR with fix. |
@mahfouz72 , thank a lot for opening clear issue. |
I am on it I have some questions related to my understanding @romani @mahfouz72 Current Behaviour:
As per the document , it mentions the magicnumbers are non-constants
According to this I suppose that ignoreFieldDeclaration flow neednt be modified:
MagicNumberCheck.java#L261-L280
|
@romani could you please check the above comment |
It is better to discuss implementation details in a PR, please push your code. |
Fix is merged . Follow up to improve will be at #16228 |
### What changes were proposed in this pull request? This PR aims to upgrade `checkstyle` from 10.20.2 to 10.21.2. ### Why are the changes needed? To pick up bug fixes: - checkstyle-10.21.2 checkstyle/checkstyle#15939 - lineWrappingIndentation falsely detects incorrect indentation for text blocks checkstyle/checkstyle#16101 - ignoreFieldDeclaration property should have the highest priority in MagicNumberCheck - checkstyle-10.21.1 checkstyle/checkstyle#11374 - UnusedLocalVariable: False Positive when inner class has same field as variable Full release notes: - https://github.com/checkstyle/checkstyle/releases/tag/checkstyle-10.21.2 - https://github.com/checkstyle/checkstyle/releases/tag/checkstyle-10.21.1 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Manually by: ``` bash ./dev/lint-java ``` ### Was this patch authored or co-authored using generative AI tooling? No. Closes #49899 from wayneguow/checkstyle. Authored-by: Wei Guo <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
### What changes were proposed in this pull request? This PR aims to upgrade `checkstyle` from 10.20.2 to 10.21.2. ### Why are the changes needed? To pick up bug fixes: - checkstyle-10.21.2 checkstyle/checkstyle#15939 - lineWrappingIndentation falsely detects incorrect indentation for text blocks checkstyle/checkstyle#16101 - ignoreFieldDeclaration property should have the highest priority in MagicNumberCheck - checkstyle-10.21.1 checkstyle/checkstyle#11374 - UnusedLocalVariable: False Positive when inner class has same field as variable Full release notes: - https://github.com/checkstyle/checkstyle/releases/tag/checkstyle-10.21.2 - https://github.com/checkstyle/checkstyle/releases/tag/checkstyle-10.21.1 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Manually by: ``` bash ./dev/lint-java ``` ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#49899 from wayneguow/checkstyle. Authored-by: Wei Guo <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
I have read check documentation: https://checkstyle.sourceforge.io/checks/coding/magicnumber.html
I have downloaded the latest checkstyle from: https://checkstyle.org/cmdline.html#Download_and_Run
I have executed the cli and showed it below, as cli describes the problem better than 1,000 words
Describe what you expect in detail.
Although constantWaiverParentToken doesn't have
STAR
orDIV
in the config. but still, there should be no violation because these magic numbers are in a field declaration andignoreFieldDeclaration
is trueThe text was updated successfully, but these errors were encountered: