Sha256: 43c26edbd2c84bd9a00c34d410ab1a9a145d839060d0726b338be5f58485bcb2
Contents?: true
Size: 513 Bytes
Versions: 173
Compression:
Stored size: 513 Bytes
Contents
# 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 [Primer::Beta::Blankslate](https://primer.style/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
Version data entries
173 entries across 173 versions & 2 rubygems