Exception: Reek::Errors::BadDetectorInCommentError
- Defined in:
- lib/reek/errors/bad_detector_in_comment_error.rb
Overview
Gets raised when trying to configure a detector which is unknown to us. This might happen for multiple reasons. The users might have a typo in his comment or he might use a detector that does not exist anymore.
Constant Summary collapse
- UNKNOWN_SMELL_DETECTOR_MESSAGE =
<<-MESSAGE.freeze Error: You are trying to configure an unknown smell detector '%<detector>s' in one of your source code comments. The source is '%<source>s' and the comment belongs to the expression starting in line %<line>d. Here's the original comment: %<comment>s Please see the Reek docs for: * how to configure Reek via source code comments: #{DocumentationLink.build('Smell Suppression')} * what smell detectors are available: #{DocumentationLink.build('Code Smells')} Update the offensive comment (or remove it if no longer applicable) and re-run Reek. MESSAGE
Instance Method Summary collapse
-
#initialize(detector_name:, source:, line:, original_comment:) ⇒ BadDetectorInCommentError
constructor
A new instance of BadDetectorInCommentError.
Methods inherited from BaseError
Constructor Details
#initialize(detector_name:, source:, line:, original_comment:) ⇒ BadDetectorInCommentError
Returns a new instance of BadDetectorInCommentError.
28 29 30 31 32 33 34 35 |
# File 'lib/reek/errors/bad_detector_in_comment_error.rb', line 28 def initialize(detector_name:, source:, line:, original_comment:) = format(UNKNOWN_SMELL_DETECTOR_MESSAGE, detector: detector_name, source: source, line: line, comment: original_comment) super() end |