Sha256: 57481767f00586eb5ae2066defd40727141bfac44ec1cc6bac83973a4fe854b2
Contents?: true
Size: 417 Bytes
Versions: 24
Compression:
Stored size: 417 Bytes
Contents
# encoding: utf-8 module RuboCop module Cop module Style # This cop checks for inline comments. class InlineComment < Cop MSG = 'Avoid inline comments.' def investigate(processed_source) processed_source.comments.each do |comment| next unless comment.inline? add_offense(comment, :expression) end end end end end end
Version data entries
24 entries across 24 versions & 2 rubygems