Sha256: c675829bb75d6d7a246c807efbf80594c3f4e4f957195a144897c6618bda172f
Contents?: true
Size: 798 Bytes
Versions: 6788
Compression:
Stored size: 798 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Style # This cop checks for trailing inline comments. # # @example # # # good # foo.each do |f| # # Standalone comment # f.bar # end # # # bad # foo.each do |f| # f.bar # Trailing inline comment # end class InlineComment < Cop MSG = 'Avoid trailing inline comments.'.freeze def investigate(processed_source) processed_source.each_comment do |comment| next if comment_line?(processed_source[comment.loc.line - 1]) || comment.text.match(/\A# rubocop:(enable|disable)/) add_offense(comment) end end end end end end
Version data entries
6,788 entries across 6,782 versions & 25 rubygems