Class: HamlLint::Linter::TagName
- Inherits:
-
HamlLint::Linter
- Object
- HamlLint::Linter
- HamlLint::Linter::TagName
- Includes:
- HamlLint::LinterRegistry
- Defined in:
- lib/haml_lint/linter/tag_name.rb
Overview
Checks for tag names with uppercase letters.
Instance Attribute Summary
Attributes inherited from HamlLint::Linter
Instance Method Summary collapse
Methods included from HamlLint::LinterRegistry
extract_linters_from, included
Methods inherited from HamlLint::Linter
#initialize, #name, #run, #run_or_raise, supports_autocorrect?, #supports_autocorrect?
Methods included from HamlVisitor
Constructor Details
This class inherits a constructor from HamlLint::Linter
Instance Method Details
#visit_tag(node) ⇒ Object
8 9 10 11 12 13 |
# File 'lib/haml_lint/linter/tag_name.rb', line 8 def visit_tag(node) tag = node.tag_name return unless tag =~ /[A-Z]/ record_lint(node, "`#{tag}` should be written in lowercase as `#{tag.downcase}`") end |