Would it be possible to stop making breaking confi...
# detekt
e
Would it be possible to stop making breaking config changes in minor version bumps? I have a lot of projects that use detekt, and every time there's a new version I have to manually go update the config (which despite being simple can get tedious).
b
Those changes are not breaking changes (for that reason we release them as minor versions). If you have
warningsAsErrors
as
false
in your configuration everything should keep working:
Copy code
config:
  validation: true
  warningsAsErrors: false
If that's not the case please, open an issue.
e
Oh maybe I misunderstood what that flag was for. I'll check it out