-
-
Notifications
You must be signed in to change notification settings - Fork 821
Enable more rules from naming rule set for detekt code base #3996
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
Enable more rules from naming rule set for detekt code base #3996
Conversation
| val message = "Class name $name is forbidden as it contains: ${forbiddenEntries.joinToString(", ")}" | ||
| report(CodeSmell(issue, Entity.atName(classOrObject), message)) | ||
| } |
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.
This is a "drive-by" fix as the original code did not successfully remove the trailing comma. The result of the trimEnd should have been re-assigned to message.
Codecov Report
@@ Coverage Diff @@
## main #3996 +/- ##
=========================================
Coverage 83.55% 83.56%
+ Complexity 3179 3175 -4
=========================================
Files 459 459
Lines 9085 9084 -1
Branches 1765 1764 -1
=========================================
Hits 7591 7591
Misses 564 564
+ Partials 930 929 -1
Continue to review full report at Codecov.
|
This relates to #3993 and enables checks from the
namingrule set