I just updated all my gems and `bin/rubocop` stopped working with the error: ``` Error: configuration for Lint/Syntax cop found in .rubocop.yml It's not possible to disable this cop. ``` The ~~blame~~ _credit_ for the [`ValidationError` check in RuboCop](https://github.com/rubocop/rubocop/blame/01d3e9dcace02022b312c9391e13f17491370b71/lib/rubocop/config_validator.rb#L161) suggests it hasn't changed in about 6 years. Versions: ``` rubocop 1.73.2 rubocop-performance 1.24.0 rubocop-rails 2.30.3 standard-performance 1.7.0 rubocop-rails-omakase 1.1.0 standard 1.47.0 ``` The [offending cop is on line 21](https://github.com/rails/rubocop-rails-omakase/blob/22f9a06efb3503694e577505d9b74c24e14448a1/rubocop.yml#L21). Adding a specific rubocop version prevents the issue for now: `gem "rubocop", "~> 1.71.0"` After limiting Rubocop, the working combination of gems is: ``` rubocop 1.71.2 rubocop-performance 1.23.1 rubocop-rails 2.29.1 standard-performance 1.6.0 rubocop-rails-omakase 1.0.0 standard 1.45.0 ```