[Fix #5490] Add new `Lint/OrderedMagicComments` cop by koic · Pull Request #5546 · rubocop/rubocop
Fixes #5490. Feature This cop checks coding magic comment should be first line, or next of shebang. Bad case # frozen_string_literal: true # coding: ascii Good case # coding: ascii # frozen_string_...