Class: Pronto::ClangFormat::OffenceCategorizer::IndentationCategorizer

Inherits:
AbstractCategorizer show all
Defined in:
lib/pronto/clang_format/offence_categorizer/indentation_categorizer.rb

Instance Method Summary collapse

Methods inherited from AbstractCategorizer

#handle, #initialize

Constructor Details

This class inherits a constructor from Pronto::ClangFormat::OffenceCategorizer::AbstractCategorizer

Instance Method Details

#handle_current(offence) ⇒ Object



7
8
9
10
11
# File 'lib/pronto/clang_format/offence_categorizer/indentation_categorizer.rb', line 7

def handle_current(offence)
  return unless offence.column == 1

  "Incorrect indentation"
end