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
Brais Gabin
11/21/2022, 8:24 AM
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
eygraber
11/21/2022, 8:43 AM
Oh maybe I misunderstood what that flag was for. I'll check it out