Class: RuboCop::Cop::Lint::Debugger
- Defined in:
- lib/rubocop/cop/lint/debugger.rb
Overview
This cop checks for debug calls (such as ‘debugger` or `binding.pry`) that should not be kept for production code.
The cop can be configured using ‘DebuggerMethods`. By default, a number of gems debug entrypoints are configured (`Kernel`, `Byebug`, `Capybara`, `Pry`, `Rails`, and `WebConsole`). Additional methods can be added.
Specific default groups can be disabled if necessary:
- source,yaml
Lint/Debugger:
WebConsole: ~
Constant Summary collapse
- MSG =
'Remove debugger entry point `%<source>s`.'
- RESTRICT_ON_SEND =
[].freeze
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
#add_global_offense, #add_offense, autocorrect_incompatible_with, badge, callbacks_needed, #callbacks_needed, #config_to_allow_offenses, #config_to_allow_offenses=, #cop_config, cop_name, #cop_name, department, documentation_url, exclude_from_registry, #excluded_file?, #external_dependency_checksum, inherited, #initialize, joining_forces, lint?, match?, #offenses, #on_investigation_end, #on_new_investigation, #on_other_file, #ready, #relevant_file?, support_autocorrect?, support_multiple_source?, #target_rails_version, #target_ruby_version
Methods included from ExcludeLimit
Methods included from AutocorrectLogic
#autocorrect?, #autocorrect_enabled?, #autocorrect_requested?, #correctable?, #disable_uncorrectable?, #safe_autocorrect?
Methods included from IgnoredNode
#ignore_node, #ignored_node?, #part_of_ignored_node?
Methods included from Util
Constructor Details
This class inherits a constructor from RuboCop::Cop::Base
Instance Method Details
#kernel?(node) ⇒ Object
63 64 65 |
# File 'lib/rubocop/cop/lint/debugger.rb', line 63 def_node_matcher :kernel?, <<~PATTERN (const {nil? cbase} :Kernel) PATTERN |
#on_send(node) ⇒ Object
75 76 77 78 79 |
# File 'lib/rubocop/cop/lint/debugger.rb', line 75 def on_send(node) return unless debugger_method?(node) add_offense(node) end |
#valid_receiver?(node, arg1) ⇒ Object
68 69 70 71 72 73 |
# File 'lib/rubocop/cop/lint/debugger.rb', line 68 def_node_matcher :valid_receiver?, <<~PATTERN { (const {nil? cbase} %1) (send {nil? #kernel?} %1) } PATTERN |