Scribe-Android
Scribe-Android copied to clipboard
Fix linting issue due to Long Parameter List
Terms
- [X] I have searched open and closed feature requests
- [X] I agree to follow Scribe-Android's Code of Conduct
Description
The LongParameterList rule is currently not active. This rule helps in identifying functions with too many parameters, which can make the code less readable and maintainable. Re-enabling this rule will encourage better function design.
Steps to find lines or files to modify:
- Comment or set to true the following line in detekt.yml:
LongParameterList:
active: true
- Run the command ./gradlew detekt.
- Examine the results to see which functions need refactoring.
Contribution
I would love to work on this issue and am more than willing to help anyone fix this issue :)