python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
JetPack Compose - Best practices for method length
I am trying to integrate detekt with JetPack Compose project and as a rule
LongMethod:
active: true
threshold: 60
and as compose recommend passing each parameter in separate line the method ...
Sahar
Votes: 0
Answers: 1
Android and Detekt: Aligning .idea CodeStyle with detekt
I have an Android project that i've set up with Detekt.
I'm currently using:
io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.19.0 (Root build.gradle)
io.gitlab.arturbosch.detekt:detekt-formatting:...
Phehaz
Votes: 0
Answers: 1
My CI build fails because of detect property
I just recently updated my arturbosch detekt library in my android app to 1.20.0-RC1 but when I run my build using bitrise CI tool, I get this error message:
I have checked my detekt config file and ...
Ugo Onuoha
Votes: 0
Answers: 0
How to check usage of 'it' parameter in lambda with Detekt custom rule?
I want to write a Detekt rule which disallows usage of implicit "it" variable in a multi-line lambda. I've written method override fun visitLambdaExpression(lambdaExpression: KtLambdaExpress...
IL_Agent
Votes: 0
Answers: 1