Sha256: 4546b5ea5991c24b5a98ced46981b6f5e74220493181b60f8a2d4bc03c5d0b66

Contents?: true

Size: 1.65 KB

Versions: 190

Compression:

Stored size: 1.65 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # Checks ensures source files have no utf-8 encoding comments.
      # @example
      #   # bad
      #   # encoding: UTF-8
      #   # coding: UTF-8
      #   # -*- coding: UTF-8 -*-
      class Encoding < Base
        include RangeHelp
        extend AutoCorrector

        MSG = 'Unnecessary utf-8 encoding comment.'
        ENCODING_PATTERN = /#.*coding\s?[:=]\s?(?:UTF|utf)-8/.freeze
        SHEBANG = '#!'

        def on_new_investigation
          return if processed_source.buffer.source.empty?

          comments.each do |line_number, comment|
            next unless offense?(comment)

            register_offense(line_number, comment)
          end
        end

        private

        def comments
          processed_source.lines.each.with_index.with_object({}) do |(line, line_number), comments|
            next if line.start_with?(SHEBANG)

            comment = MagicComment.parse(line)
            return comments unless comment.valid?

            comments[line_number + 1] = comment
          end
        end

        def offense?(comment)
          comment.encoding_specified? && comment.encoding.casecmp('utf-8').zero?
        end

        def register_offense(line_number, comment)
          range = processed_source.buffer.line_range(line_number)

          add_offense(range) do |corrector|
            text = comment.without(:encoding)

            if text.blank?
              corrector.remove(range_with_surrounding_space(range, side: :right))
            else
              corrector.replace(range, text)
            end
          end
        end
      end
    end
  end
end

Version data entries

190 entries across 183 versions & 18 rubygems

Version Path
rubocop-1.71.0 lib/rubocop/cop/style/encoding.rb
rubocop-1.70.0 lib/rubocop/cop/style/encoding.rb
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/style/encoding.rb
rubocop-1.69.2 lib/rubocop/cop/style/encoding.rb
rubocop-1.69.1 lib/rubocop/cop/style/encoding.rb
rubocop-1.69.0 lib/rubocop/cop/style/encoding.rb
rubocop-1.68.0 lib/rubocop/cop/style/encoding.rb
rubocop-1.67.0 lib/rubocop/cop/style/encoding.rb
rubocop-1.66.1 lib/rubocop/cop/style/encoding.rb
rubocop-1.66.0 lib/rubocop/cop/style/encoding.rb
rubocop-1.65.1 lib/rubocop/cop/style/encoding.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/style/encoding.rb
rubocop-1.65.0 lib/rubocop/cop/style/encoding.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/encoding.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/encoding.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/encoding.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-1.64.1/lib/rubocop/cop/style/encoding.rb
rubocop-1.64.1 lib/rubocop/cop/style/encoding.rb
rubocop-1.63.4 lib/rubocop/cop/style/encoding.rb
rubocop-1.63.3 lib/rubocop/cop/style/encoding.rb