Sha256: 40bb4c66ff2957ae4348e5e6116f2be32c7b6f3cffd9137ec0536fa91dc9172b
Contents?: true
Size: 492 Bytes
Versions: 28
Compression:
Stored size: 492 Bytes
Contents
# frozen_string_literal: true require_relative "base_linter" module ERBLint module Linters # Counts the number of times a HTML SelectMenu is used instead of the SelectPanel component. class SelectMenuMigrationCounter < BaseLinter MESSAGE = "Please use the [Primer::Alpha::SelectPanel](https://primer.style/components/selectpanel/rails/alpha) component instead of SelectMenu." CLASSES = ["SelectMenu", /\ASelectMenu-.*/].freeze TAGS = [].freeze end end end
Version data entries
28 entries across 28 versions & 2 rubygems