Pattern: Missing empty line after magic comment
Issue: -
Checks for a newline after the last magic comment.
# good
# frozen_string_literal: true
# Some documentation for Person
class Person
# Some code
end
# bad
# frozen_string_literal: true
# Some documentation for Person
class Person
# Some code
end