Sha256: ae85f7987bce8b43cb6372ded1d36177c270bd0beb47a63af63671b740ddff10

Contents?: true

Size: 1.73 KB

Versions: 20

Compression:

Stored size: 1.73 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module RSpec
      # Checks that memoized helper names use the configured style.
      #
      # Variables can be excluded from checking using the `IgnoredPatterns`
      # option.
      #
      # @example EnforcedStyle: snake_case (default)
      #   # bad
      #   subject(:userName1) { 'Adam' }
      #   let(:userName2) { 'Adam' }
      #
      #   # good
      #   subject(:user_name_1) { 'Adam' }
      #   let(:user_name_2) { 'Adam' }
      #
      # @example EnforcedStyle: camelCase
      #   # bad
      #   subject(:user_name_1) { 'Adam' }
      #   let(:user_name_2) { 'Adam' }
      #
      #   # good
      #   subject(:userName1) { 'Adam' }
      #   let(:userName2) { 'Adam' }
      #
      # @example IgnoredPatterns configuration
      #
      #   # rubocop.yml
      #   # RSpec/VariableName:
      #   #   EnforcedStyle: snake_case
      #   #   IgnoredPatterns:
      #   #     - ^userFood
      #
      # @example
      #   # okay because it matches the `^userFood` regex in `IgnoredPatterns`
      #   subject(:userFood_1) { 'spaghetti' }
      #   let(:userFood_2) { 'fettuccine' }
      #
      class VariableName < Base
        include ConfigurableNaming
        include IgnoredPattern
        include Variable

        MSG = 'Use %<style>s for variable names.'

        def on_send(node)
          variable_definition?(node) do |variable|
            return if variable.dstr_type? || variable.dsym_type?
            return if matches_ignored_pattern?(variable.value)

            check_name(node, variable.value, variable.loc.expression)
          end
        end

        private

        def message(style)
          format(MSG, style: style)
        end
      end
    end
  end
end

Version data entries

20 entries across 18 versions & 2 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rspec-2.12.1/lib/rubocop/cop/rspec/variable_name.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rspec-2.9.0/lib/rubocop/cop/rspec/variable_name.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-rspec-2.12.1/lib/rubocop/cop/rspec/variable_name.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-rspec-2.9.0/lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.12.1 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.12.0 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.11.1 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.11.0 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.10.0 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.9.0 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.8.0 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.7.0 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.6.0 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.5.0 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.4.0 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.3.0 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.2.0 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.1.0 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.0.1 lib/rubocop/cop/rspec/variable_name.rb
rubocop-rspec-2.0.0 lib/rubocop/cop/rspec/variable_name.rb