Class: HamlLint::Linter::RubyComments

Inherits:
HamlLint::Linter show all
Includes:
HamlLint::LinterRegistry
Defined in:
lib/haml_lint/linter/ruby_comments.rb

Overview

Checks for Ruby comments that can be written as HAML comments.

Instance Attribute Summary

Attributes inherited from HamlLint::Linter

#lints

Instance Method Summary collapse

Methods included from HamlLint::LinterRegistry

extract_linters_from, included

Methods inherited from HamlLint::Linter

#initialize, #name, #run

Methods included from HamlVisitor

#visit, #visit_children

Constructor Details

This class inherits a constructor from HamlLint::Linter

Instance Method Details

#visit_silent_script(node) ⇒ Object



8
9
10
11
12
# File 'lib/haml_lint/linter/ruby_comments.rb', line 8

def visit_silent_script(node)
  if code_comment?(node)
    record_lint(node, 'Use `-#` for comments instead of `- #`')
  end
end