Class: RuboCop::Cop::InternalAffairs::UndefinedConfig
- Extended by:
- FileFinder
- Defined in:
- lib/rubocop/cop/internal_affairs/undefined_config.rb
Overview
Looks for references to a cop configuration key that isn’t defined in config/default.yml.
Constant Summary collapse
- ALLOWED_CONFIGURATIONS =
%w[ Safe SafeAutoCorrect AutoCorrect Severity StyleGuide Details Reference Include Exclude ].freeze
- RESTRICT_ON_SEND =
%i[[] fetch].freeze
- MSG =
'`%<name>s` is not defined in the configuration for `%<cop>s` ' \ 'in `config/default.yml`.'
- CONFIG_PATH =
find_file_upwards('config/default.yml', Dir.pwd)
- CONFIG =
if CONFIG_PATH ConfigLoader.load_yaml_configuration(CONFIG_PATH) else {} end
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #cop_class_def(node) ⇒ Object
- #cop_config_accessor?(node) ⇒ Object
- #on_new_investigation ⇒ Object
- #on_send(node) ⇒ Object
Methods included from FileFinder
find_file_upwards, find_last_file_upwards, traverse_directories_upwards
Methods inherited from Base
#active_support_extensions_enabled?, #add_global_offense, #add_offense, #always_autocorrect?, autocorrect_incompatible_with, badge, #begin_investigation, callbacks_needed, #callbacks_needed, #config_to_allow_offenses, #config_to_allow_offenses=, #contextual_autocorrect?, #cop_config, cop_name, #cop_name, department, documentation_url, exclude_from_registry, #excluded_file?, #external_dependency_checksum, inherited, #initialize, #inspect, joining_forces, lint?, match?, #message, #offenses, #on_investigation_end, #on_other_file, #parse, #parser_engine, #ready, #relevant_file?, requires_gem, #string_literals_frozen_by_default?, support_autocorrect?, support_multiple_source?, #target_rails_version, #target_ruby_version
Methods included from ExcludeLimit
Methods included from AutocorrectLogic
#autocorrect?, #autocorrect_enabled?, #autocorrect_requested?, #autocorrect_with_disable_uncorrectable?, #correctable?, #disable_uncorrectable?, #safe_autocorrect?
Methods included from RuboCop::Cop::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
#cop_class_def(node) ⇒ Object
26 27 28 29 30 |
# File 'lib/rubocop/cop/internal_affairs/undefined_config.rb', line 26 def_node_search :cop_class_def, <<~PATTERN (class _ (const {nil? (const nil? :Cop) (const (const {cbase nil?} :RuboCop) :Cop)} {:Base :Cop}) ...) PATTERN |
#cop_config_accessor?(node) ⇒ Object
33 34 35 |
# File 'lib/rubocop/cop/internal_affairs/undefined_config.rb', line 33 def_node_matcher :cop_config_accessor?, <<~PATTERN (send (send nil? :cop_config) {:[] :fetch} ${str sym}...) PATTERN |
#on_new_investigation ⇒ Object
37 38 39 40 41 42 43 44 45 |
# File 'lib/rubocop/cop/internal_affairs/undefined_config.rb', line 37 def on_new_investigation super return unless processed_source.ast cop_class = cop_class_def(processed_source.ast).first return unless (@cop_class_name = extract_cop_name(cop_class)) @config_for_cop = CONFIG[@cop_class_name] || {} end |
#on_send(node) ⇒ Object
47 48 49 50 51 52 53 54 55 |
# File 'lib/rubocop/cop/internal_affairs/undefined_config.rb', line 47 def on_send(node) return unless cop_class_name return unless (config_name_node = cop_config_accessor?(node)) return if always_allowed?(config_name_node) return if configuration_key_defined?(config_name_node) = format(MSG, name: config_name_node.value, cop: cop_class_name) add_offense(config_name_node, message: ) end |