# frozen_string_literal: true require_relative "base_linter" module ERBLint module Linters # Counts the number of times a HTML Blankslate is used instead of the component. class BlankslateComponentMigrationCounter < BaseLinter MESSAGE = "We are migrating Blankslate to use [Yattho::Beta::Blankslate](https://yattho.com/view-components/components/beta/blankslate), please try to use that instead of raw HTML." CLASSES = %w[blankslate].freeze TAGS = %w[div].freeze end end end