waifu-motivator / waifu-motivator-plugin

OSS Waifu Motivator Plugin for JetBrains IDEs to help boost your motivation while coding!
https://plugins.jetbrains.com/plugin/13381-waifu-motivator
MIT License
342 stars 16 forks source link

Integrate Detekt linter #250

Open zaerald opened 3 years ago

zaerald commented 3 years ago

I was checking the intellij-platform-plugin-template, and saw a detekt linter in addition to ktlint. Do you think we can also integrate it with WMP @Unthrottled? This would be a part where we add missing goodies here in WMP based on the template repo.

https://github.com/JetBrains/intellij-platform-plugin-template/blob/e44bf3c3ec0d1fd1ac9e1f78bc5bda7eacb14257/build.gradle.kts#L15-L18

    // detekt linter - read more: https://detekt.github.io/detekt/gradle.html
    id("io.gitlab.arturbosch.detekt") version "1.14.2"
    // ktlint linter - read more: https://github.com/JLLeitschuh/ktlint-gradle
    id("org.jlleitschuh.gradle.ktlint") version "9.4.1"

Reference

Unthrottled commented 3 years ago

Yes! That would be nice!

Suggested extension to the detekt config

exceptions:
  TooGenericExceptionCaught:
    active: false

performance:
  SpreadOperator:
    active: false

style:
  ForbiddenComment:
    active: true
    values: []

empty-blocks:
  active: false

Would also like detekt to be configured to autocorrect as well.