Class: Rubocop::Cop::LeadingCommentSpace

Inherits:
Cop
  • Object
show all
Defined in:
lib/rubocop/cop/leading_comment_space.rb

Constant Summary collapse

MSG =
'Missing space after #.'

Instance Attribute Summary

Attributes inherited from Cop

#debug, #disabled_lines, #offences

Instance Method Summary collapse

Methods inherited from Cop

#add_offence, cop_name, #has_report?, #ignore_node, inherited, #initialize, #name

Constructor Details

This class inherits a constructor from Rubocop::Cop::Cop

Instance Method Details

#inspect(source, tokens, ast, comments) ⇒ Object



8
9
10
11
12
13
14
15
16
# File 'lib/rubocop/cop/leading_comment_space.rb', line 8

def inspect(source, tokens, ast, comments)
  comments.each do |comment|
    if comment.text =~ /^#+[^#\s]/
      unless comment.text.start_with?('#!') && comment.loc.line == 1
        add_offence(:convention, comment.loc.line, MSG)
      end
    end
  end
end