class RuboCop::Cop::Sorbet::ForbidRBIOutsideOfAllowedPaths

def allowed_paths

def allowed_paths
  paths = cop_config["AllowedPaths"] # rubocop:todo InternalAffairs/UndefinedConfig
  return unless paths.is_a?(Array)
  paths.compact
end