Hey guys, Do you have any lint rules to check, `wh...
# android
v
Hey guys, Do you have any lint rules to check,
when setting up our modules & their corresponding dependencies I think we should have a rule that we always need to add a classifier declaration. This makes things crystal clear when we revisit the modules. So for example instead of
Copy code
viewModel { ConsultationViewModel(networkSessionScope.get(), get()) }
we would have
Copy code
viewModel { ConsultationViewModel(addressRepository = networkSessionScope.get(), consultationsRepository = get()) }
Just makes the solution more readable. I need only for specific files not for whole project
1