app/controllers/application_controller.rb
# frozen_string_literal: trueAdd an empty line after magic comments.class ApplicationController < ActionController::Base def index @schools = School.order(:name) @judges = Judge.order(:name) @teams = Team.order(:name) @debaters = Debater.order(:name) @rooms = Room.order(:name) render 'shared/dashboard' endend