-
Notifications
You must be signed in to change notification settings - Fork 640
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
[ISSUE #442] Fix findings filtered by Checkstyle workflow #443
[ISSUE #442] Fix findings filtered by Checkstyle workflow #443
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #443 +/- ##
=========================================
Coverage 9.80% 9.80%
Complexity 282 282
=========================================
Files 228 228
Lines 10785 10785
Branches 919 919
=========================================
Hits 1057 1057
Misses 9633 9633
Partials 95 95
Continue to review full report at Codecov.
|
I also do the same thing at #433, if this pr is merged first, I will rebase. |
It seems this pr needs be merged first or every other new pr will be checked failed. |
@qqeasonchen Yes, If there are no other problems, this pr can be merged first, otherwise the other commits will be blocked. |
Have any other guys reviewed already? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, When I submitted a pr, I found that the file sChat2.jks
seems to break the rules in checkStyle, do we need to exclude this file? I am not sure whether this will happen.
@ruanwenjun Thanks for reviewing! I have the same question. It seems that |
If this file is not needed, we can remove it, and if this is needed then we can filter it like below: <module name="BeforeExecutionExclusionFileFilter">
<property name="fileNamePattern" value="./eventmesh-runtime/conf/sChat2.jks$"/>
</module> Or using checkStyle-suppressions.xml |
sChat2.jks can be removed. |
…he#443) * fix findings in RequestCode * fix findings in ClientRetCode * fix findings in Async* * fix findings in eventmesh-runtime * translate all chinese * translate * fix findings in org.apache.eventmesh.spi.example * move package demo to org.apache.eventmesh.runtime.demo * translate * rename package client to org.apache.eventmesh.runtime.client * rename package client to org.apache.eventmesh.runtime.client * update checkStyle.xml * fix System.err.out * delete sChat2 * remove comments in eventmesh-sdk-java:build.gradle * remove Chinese in eventmesh-test:build.gradle * fix Chinese findings in tcp_sub_broadcast.sh * fix Chinese findings in *.sh
…he#443) * fix findings in RequestCode * fix findings in ClientRetCode * fix findings in Async* * fix findings in eventmesh-runtime * translate all chinese * translate * fix findings in org.apache.eventmesh.spi.example * move package demo to org.apache.eventmesh.runtime.demo * translate * rename package client to org.apache.eventmesh.runtime.client * rename package client to org.apache.eventmesh.runtime.client * update checkStyle.xml * fix System.err.out * delete sChat2 * remove comments in eventmesh-sdk-java:build.gradle * remove Chinese in eventmesh-test:build.gradle * fix Chinese findings in tcp_sub_broadcast.sh * fix Chinese findings in *.sh
* fix findings in RequestCode * fix findings in ClientRetCode * fix findings in Async* * fix findings in eventmesh-runtime * translate all chinese * translate * fix findings in org.apache.eventmesh.spi.example * move package demo to org.apache.eventmesh.runtime.demo * translate * rename package client to org.apache.eventmesh.runtime.client * rename package client to org.apache.eventmesh.runtime.client * update checkStyle.xml * fix System.err.out * delete sChat2 * remove comments in eventmesh-sdk-java:build.gradle * remove Chinese in eventmesh-test:build.gradle * fix Chinese findings in tcp_sub_broadcast.sh * fix Chinese findings in *.sh
Fixes ISSUE #442.
Motivation
Explain the content here.
Explain why you want to make the changes and what problem you're trying to solve.
I introduced CheckStyle workflow in PR #438, but did not fix the issues that Checkstyle found.
Modifications
Describe the modifications you've done.
Fixed all findings filtered by the Checkstyle workflow.
Modified Checkstyle config file: