What’s the simplest way of catching up with new ru...
# detekt
w
What’s the simplest way of catching up with new rules/rule changes on detekt updates? I usually try to check the diff for
default-detekt-config.yml
, but I wonder if there’s something simpler/automatable
b
The changelog, I guess. But what I do is this: https://github.com/detekt/detekt/discussions/3558#discussioncomment-483027 (but it's basically the diff)
👍 2
a
I also add
Copy code
config:
  checkExhaustiveness: true
which check that
detekt.yml
has all the keys added in the config files and it gives error when there is new rule which I have not added when upgrading the detekt version
👍 1