Scribe-Android
Scribe-Android copied to clipboard
Fix linting issue due to Long Methods
Terms
- [X] I have searched open and closed feature requests
- [X] I agree to follow Scribe-Android's Code of Conduct
Description
The LongMethod rule is currently inactive. This rule identifies methods that are too long, which can affect readability and maintainability. Re-enabling this rule will help in managing method size and improving code quality.
Steps to see which lines have to be modified:
- Comment or set to true the following line in detekt.yml:
LongMethod:
active: true
- Execute the command ./gradlew detekt.
- Check the output to find methods that need to be refactored.
Contribution
I would love to work on this issue and am more than willing to help anyone fix this issue :)