Sha256: ebb8ee972960810352aeff11f3ef1b750ee878949aef49f00da82dcbbe73332b
Contents?: true
Size: 1.01 KB
Versions: 3
Compression:
Stored size: 1.01 KB
Contents
# encoding: utf-8 module Rubocop module Cop # Common functionality for cops which processes Parser's diagnostics. # This mixin requires its user class to define `#relevant_diagnostic?`. # # def relevant_diagnostic?(diagnostic) # diagnostic.reason == :my_interested_diagnostic_type # end # # If you want to use an alternative offence message rather than the one in # Parser's diagnostic, define `#alternative_message`. # # def alternative_message(diagnostic) # 'My custom message' # end module ParserDiagnostic def investigate(processed_source) processed_source.diagnostics.each do |d| next unless relevant_diagnostic?(d) message = if respond_to?(:alternative_message, true) alternative_message(d) else d.message.capitalize end add_offence(nil, d.location, message, d.level) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rubocop-0.18.1 | lib/rubocop/cop/mixin/parser_diagnostic.rb |
rubocop-0.18.0 | lib/rubocop/cop/mixin/parser_diagnostic.rb |
rubocop-0.17.0 | lib/rubocop/cop/mixin/parser_diagnostic.rb |