Sha256: ad0549cb01bfb95da5ad6d8aea0145bfa7fddbf85b5d2a5b7c690ebf978c0a37

Contents?: true

Size: 1.02 KB

Versions: 17

Compression:

Stored size: 1.02 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for non-ascii characters in identifier names.
      class AsciiIdentifiers < Cop
        MSG = 'Use only ascii symbols in identifiers.'.freeze

        def investigate(processed_source)
          processed_source.tokens.each do |token|
            next unless token.type == :tIDENTIFIER && !token.text.ascii_only?
            add_offense(token, first_offense_range(token))
          end
        end

        private

        def first_offense_range(identifier)
          expression    = identifier.pos
          first_offense = first_non_ascii_chars(identifier.text)

          start_position = expression.begin_pos +
                           identifier.text.index(first_offense)
          end_position   = start_position + first_offense.length

          range_between(start_position, end_position)
        end

        def first_non_ascii_chars(string)
          string.match(/[^[:ascii:]]+/).to_s
        end
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
dirwatch-0.0.9 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/ascii_identifiers.rb
dirwatch-0.0.8 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/ascii_identifiers.rb
dirwatch-0.0.6 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/ascii_identifiers.rb
dirwatch-0.0.5 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/ascii_identifiers.rb
dirwatch-0.0.4 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/ascii_identifiers.rb
dirwatch-0.0.3 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/ascii_identifiers.rb
dirwatch-0.0.2 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/style/ascii_identifiers.rb
rubocop-0.49.1 lib/rubocop/cop/style/ascii_identifiers.rb
rubocop-0.49.0 lib/rubocop/cop/style/ascii_identifiers.rb
rubocop-0.48.1 lib/rubocop/cop/style/ascii_identifiers.rb
rubocop-0.48.0 lib/rubocop/cop/style/ascii_identifiers.rb
rubocop-0.47.1 lib/rubocop/cop/style/ascii_identifiers.rb
rubocop-0.47.0 lib/rubocop/cop/style/ascii_identifiers.rb
rubocop-0.46.0 lib/rubocop/cop/style/ascii_identifiers.rb
rubocop-0.45.0 lib/rubocop/cop/style/ascii_identifiers.rb
rubocop-0.44.1 lib/rubocop/cop/style/ascii_identifiers.rb
rubocop-0.44.0 lib/rubocop/cop/style/ascii_identifiers.rb