Hey guys, Do you have any lint rules to check, `wh...
# ktlint
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 just want to check only specific file, not in whole project
e
v
Hey @eygraber thanks for reply. I never try this. I am new in lint.