Exception: Reek::Errors::BadDetectorConfigurationKeyInCommentError
- Inherits:
-
BaseError
- Object
- RuntimeError
- BaseError
- Reek::Errors::BadDetectorConfigurationKeyInCommentError
- Defined in:
- lib/reek/errors/bad_detector_configuration_key_in_comment_error.rb
Overview
Gets raised when trying to configure a detector with an option which is unknown to it.
Constant Summary collapse
- UNKNOWN_SMELL_DETECTOR_MESSAGE =
<<-MESSAGE.freeze Error: You are trying to configure the smell detector '%<detector>s' in one of your source code comments with the unknown option %<option>s. 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 basic options are available: #{DocumentationLink.build('Basic Smell Options')} * what custom options are available by checking the detector specific documentation in /docs Update the offensive comment (or remove it if no longer applicable) and re-run Reek. MESSAGE
Instance Method Summary collapse
-
#initialize(detector_name:, offensive_keys:, source:, line:, original_comment:) ⇒ BadDetectorConfigurationKeyInCommentError
constructor
A new instance of BadDetectorConfigurationKeyInCommentError.
Methods inherited from BaseError
Constructor Details
#initialize(detector_name:, offensive_keys:, source:, line:, original_comment:) ⇒ BadDetectorConfigurationKeyInCommentError
Returns a new instance of BadDetectorConfigurationKeyInCommentError.
28 29 30 31 32 33 34 35 36 |
# File 'lib/reek/errors/bad_detector_configuration_key_in_comment_error.rb', line 28 def initialize(detector_name:, offensive_keys:, source:, line:, original_comment:) = format(UNKNOWN_SMELL_DETECTOR_MESSAGE, detector: detector_name, option: offensive_keys, source: source, line: line, comment: original_comment) super() end |