Sha256: f7bdfedcc7baffcbe273724aed3fa78f906c548b3e013f695474fb82e0215a61

Contents?: true

Size: 1.63 KB

Versions: 15

Compression:

Stored size: 1.63 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # This cop checks for calls to debugger or pry.
      # The cop can be configured to define which methods and receivers must be fixed.
      #
      # @example
      #
      #   # bad (ok during development)
      #
      #   # using pry
      #   def some_method
      #     binding.pry
      #     do_something
      #   end
      #
      # @example
      #
      #   # bad (ok during development)
      #
      #   # using byebug
      #   def some_method
      #     byebug
      #     do_something
      #   end
      #
      # @example
      #
      #   # good
      #
      #   def some_method
      #     do_something
      #   end
      class Debugger < Base
        MSG = 'Remove debugger entry point `%<source>s`.'

        RESTRICT_ON_SEND = [].freeze

        def on_send(node)
          return unless debugger_method?(node.method_name)
          return if !node.receiver.nil? && !debugger_receiver?(node)

          add_offense(node)
        end

        private

        def message(node)
          format(MSG, source: node.source)
        end

        def debugger_method?(name)
          cop_config.fetch('DebuggerMethods', []).include?(name.to_s)
        end

        def debugger_receiver?(node)
          receiver = case node.receiver
                     when RuboCop::AST::SendNode
                       node.receiver.method_name
                     when RuboCop::AST::ConstNode
                       node.receiver.const_name
                     end

          cop_config.fetch('DebuggerReceivers', []).include?(receiver.to_s)
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
rubocop-1.9.1 lib/rubocop/cop/lint/debugger.rb
rubocop-1.9.0 lib/rubocop/cop/lint/debugger.rb
rubocop-1.8.1 lib/rubocop/cop/lint/debugger.rb
rubocop-1.8.0 lib/rubocop/cop/lint/debugger.rb
rubocop-1.7.0 lib/rubocop/cop/lint/debugger.rb
rubocop-1.6.1 lib/rubocop/cop/lint/debugger.rb
rubocop-1.6.0 lib/rubocop/cop/lint/debugger.rb
rubocop-1.5.2 lib/rubocop/cop/lint/debugger.rb
rubocop-1.5.1 lib/rubocop/cop/lint/debugger.rb
rubocop-1.5.0 lib/rubocop/cop/lint/debugger.rb
rubocop-1.4.2 lib/rubocop/cop/lint/debugger.rb
rubocop-1.4.1 lib/rubocop/cop/lint/debugger.rb
rubocop-1.4.0 lib/rubocop/cop/lint/debugger.rb
rubocop-1.3.1 lib/rubocop/cop/lint/debugger.rb
rubocop-1.3.0 lib/rubocop/cop/lint/debugger.rb