Class: RuboCop::Cop::RBS::Layout::EmptyLinesAroundModuleBody
- Inherits:
-
RBS::CopBase
- Object
- Base
- RBS::CopBase
- RuboCop::Cop::RBS::Layout::EmptyLinesAroundModuleBody
- Extended by:
- AutoCorrector
- Includes:
- EmptyLinesAroundBody
- Defined in:
- lib/rubocop/cop/rbs/layout/empty_lines_around_module_body.rb
Overview
Checks if empty lines around the bodies of modules match the configuration.
Constant Summary collapse
- KIND =
'module'
Constants included from EmptyLinesAroundBody
RuboCop::Cop::RBS::Layout::EmptyLinesAroundBody::MSG_EXTRA
Instance Attribute Summary
Attributes inherited from RBS::CopBase
Instance Method Summary collapse
Methods inherited from RBS::CopBase
#investigation_rbs, #location_to_range, #on_new_investigation, #on_other_file, #on_rbs_attribute, #on_rbs_class, #on_rbs_constant, #on_rbs_def, #on_rbs_global, #on_rbs_interface, #on_rbs_new_investigation, #on_rbs_parsing_error, #on_rbs_private, #on_rbs_public, #on_rbs_type_alias, #on_rbs_var, #parse_rbs, #rbs_buffer, #tokenize, #walk
Methods included from RBS::OnTypeHelper
Instance Method Details
#on_rbs_module(decl) ⇒ Object
22 23 24 |
# File 'lib/rubocop/cop/rbs/layout/empty_lines_around_module_body.rb', line 22 def on_rbs_module(decl) check(decl) end |