Class: RuboCop::MagicComment::EmacsComment
- Inherits:
-
EditorComment
- Object
- RuboCop::MagicComment
- EditorComment
- RuboCop::MagicComment::EmacsComment
- Defined in:
- lib/rubocop/magic_comment.rb
Overview
Wrapper for Emacs style magic comments.
Constant Summary collapse
- REGEXP =
/-\*-(?<token>.+)-\*-/.freeze
- FORMAT =
'# -*- %s -*-'
- SEPARATOR =
';'
- OPERATOR =
':'
Constants inherited from RuboCop::MagicComment
Instance Method Summary collapse
Methods inherited from EditorComment
Methods inherited from RuboCop::MagicComment
#any?, #encoding_specified?, #frozen_string_literal, #frozen_string_literal?, #frozen_string_literal_specified?, #initialize, parse, #shareable_constant_value, #shareable_constant_value_specified?, #typed, #typed_specified?, #valid?, #valid_literal_value?, #valid_shareable_constant_value?
Constructor Details
This class inherits a constructor from RuboCop::MagicComment
Instance Method Details
permalink #new_frozen_string_literal(value) ⇒ Object
[View source]
196 197 198 |
# File 'lib/rubocop/magic_comment.rb', line 196 def new_frozen_string_literal(value) "# -*- frozen_string_literal: #{value} -*-" end |