Class: RuboCop::CommentConfig
Relationships & Source Files | |
Namespace Children | |
Classes:
| |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
SimpleForwardable
|
|
Inherits: | Object |
Defined in: | lib/rubocop/comment_config.rb |
Overview
This class parses the special rubocop:disable
comments in a source
and provides a way to check if each cop is enabled at arbitrary line.
Constant Summary
-
CONFIG_DISABLED_LINE_RANGE_MIN =
# File 'lib/rubocop/comment_config.rb', line 9-Float::INFINITY
Class Method Summary
- .new(processed_source) ⇒ CommentConfig constructor
Instance Attribute Summary
- #processed_source readonly
Instance Method Summary
- #comment_only_line?(line_number) ⇒ Boolean
- #cop_disabled_line_ranges
- #cop_enabled_at_line?(cop, line_number) ⇒ Boolean
- #cop_opted_in?(cop) ⇒ Boolean
- #extra_enabled_comments
-
#analyze
private
rubocop:todo Metrics/AbcSize.
- #analyze_cop(analysis, directive) private
- #analyze_disabled(analysis, directive) private
- #analyze_rest(analysis, directive) private
- #analyze_single_line(analysis, directive) private
- #cop_line_ranges(analysis) private
- #each_directive private
- #extra_enabled_comments_with_names(extras:, names:) private
- #handle_enable_all(directive, names, extras) private
-
#handle_switch(directive, names, extras)
private
Collect cops that have been disabled or enabled by name in a directive comment so that
Lint/RedundantCopEnableDirective
can register offenses correctly. - #inject_disabled_cops_directives(analyses) private
- #non_comment_token_line_numbers private
- #opt_in_cops private
- #qualified_cop_name(cop_name) private
Constructor Details
.new(processed_source) ⇒ CommentConfig
# File 'lib/rubocop/comment_config.rb', line 34
def initialize(processed_source) @processed_source = processed_source @no_directives = !processed_source.raw_source.include?('rubocop') end
Instance Attribute Details
#processed_source (readonly)
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 30
attr_reader :processed_source
Instance Method Details
#analyze (private)
rubocop:todo Metrics/AbcSize
# File 'lib/rubocop/comment_config.rb', line 96
def analyze # rubocop:todo Metrics/AbcSize return {} if @no_directives analyses = Hash.new { |hash, key| hash[key] = CopAnalysis.new([], nil) } inject_disabled_cops_directives(analyses) each_directive do |directive| directive.cop_names.each do |cop_name| cop_name = qualified_cop_name(cop_name) analyses[cop_name] = analyze_cop(analyses[cop_name], directive) end end analyses.each_with_object({}) do |element, hash| cop_name, analysis = *element hash[cop_name] = cop_line_ranges(analysis) end end
#analyze_cop(analysis, directive) (private)
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 124
def analyze_cop(analysis, directive) # Disabling cops after comments like `#=SomeDslDirective` does not related to single line if !comment_only_line?(directive.line_number) || directive.single_line? analyze_single_line(analysis, directive) elsif directive.disabled? analyze_disabled(analysis, directive) else analyze_rest(analysis, directive) end end
#analyze_disabled(analysis, directive) (private)
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 144
def analyze_disabled(analysis, directive) line = directive.line_number start_line = analysis.start_line_number # Cop already disabled on this line, so we end the current disabled # range before we start a new range. return CopAnalysis.new(analysis.line_ranges + [start_line..line], line) if start_line CopAnalysis.new(analysis.line_ranges, line) end
#analyze_rest(analysis, directive) (private)
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 155
def analyze_rest(analysis, directive) line = directive.line_number start_line = analysis.start_line_number return CopAnalysis.new(analysis.line_ranges + [start_line..line], nil) if start_line CopAnalysis.new(analysis.line_ranges, nil) end
#analyze_single_line(analysis, directive) (private)
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 135
def analyze_single_line(analysis, directive) return analysis unless directive.disabled? line = directive.line_number start_line = analysis.start_line_number CopAnalysis.new(analysis.line_ranges + [(line..line)], start_line) end
#comment_only_line?(line_number) ⇒ Boolean
# File 'lib/rubocop/comment_config.rb', line 63
def comment_only_line?(line_number) non_comment_token_line_numbers.none?(line_number) end
#cop_disabled_line_ranges
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 51
def cop_disabled_line_ranges @cop_disabled_line_ranges ||= analyze end
#cop_enabled_at_line?(cop, line_number) ⇒ Boolean
# File 'lib/rubocop/comment_config.rb', line 39
def cop_enabled_at_line?(cop, line_number) cop = cop.cop_name if cop.respond_to?(:cop_name) disabled_line_ranges = cop_disabled_line_ranges[cop] return true unless disabled_line_ranges disabled_line_ranges.none? { |range| range.include?(line_number) } end
#cop_line_ranges(analysis) (private)
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 164
def cop_line_ranges(analysis) return analysis.line_ranges unless analysis.start_line_number analysis.line_ranges + [(analysis.start_line_number..Float::INFINITY)] end
#cop_opted_in?(cop) ⇒ Boolean
# File 'lib/rubocop/comment_config.rb', line 47
def cop_opted_in?(cop) opt_in_cops.include?(cop.cop_name) end
#each_directive (private)
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 170
def each_directive return if @no_directives processed_source.comments.each do |comment| directive = DirectiveComment.new(comment) yield directive if directive.cop_names end end
#extra_enabled_comments
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 55
def extra_enabled_comments disable_count = Hash.new(0) registry.disabled(config).each do |cop| disable_count[cop.cop_name] += 1 end extra_enabled_comments_with_names(extras: Hash.new { |h, k| h[k] = [] }, names: disable_count) end
#extra_enabled_comments_with_names(extras:, names:) (private)
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 69
def extra_enabled_comments_with_names(extras:, names:) each_directive do |directive| next unless comment_only_line?(directive.line_number) if directive.enabled_all? handle_enable_all(directive, names, extras) else handle_switch(directive, names, extras) end end extras end
#handle_enable_all(directive, names, extras) (private)
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 190
def handle_enable_all(directive, names, extras) enabled_cops = 0 names.each do |name, counter| next unless counter.positive? names[name] -= 1 enabled_cops += 1 end extras[directive.comment] << 'all' if enabled_cops.zero? end
#handle_switch(directive, names, extras) (private)
Collect cops that have been disabled or enabled by name in a directive comment
so that Lint/RedundantCopEnableDirective
can register offenses correctly.
# File 'lib/rubocop/comment_config.rb', line 204
def handle_switch(directive, names, extras) directive.cop_names.each do |name| if directive.disabled? names[name] += 1 elsif (names[name]).positive? names[name] -= 1 else extras[directive.comment] << name end end end
#inject_disabled_cops_directives(analyses) (private)
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 115
def inject_disabled_cops_directives(analyses) registry.disabled(config).each do |cop| analyses[cop.cop_name] = analyze_cop( analyses[cop.cop_name], DirectiveComment.new(ConfigDisabledCopDirectiveComment.new(cop.cop_name)) ) end end
#non_comment_token_line_numbers (private)
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 183
def non_comment_token_line_numbers @non_comment_token_line_numbers ||= begin non_comment_tokens = processed_source.tokens.reject(&:comment?) non_comment_tokens.map(&:line).uniq end end
#opt_in_cops (private)
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 83
def opt_in_cops @opt_in_cops ||= begin cops = Set.new each_directive do |directive| next unless directive.enabled? next if directive.all_cops? cops.merge(directive.cop_names) end cops end end
#qualified_cop_name(cop_name) (private)
[ GitHub ]# File 'lib/rubocop/comment_config.rb', line 179
def qualified_cop_name(cop_name) Cop::Registry.qualified_cop_name(cop_name.strip, processed_source.file_path) end