class RuboCop::ConfigLoader

def transform(config)

been replaced by parameters returned by the given block.
Returns a new hash where the parameters of the given config hash have
def transform(config)
  Hash[config.map { |cop, params| [cop, yield(params)] }]
end