-
-
Notifications
You must be signed in to change notification settings - Fork 105
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem? Please describe.
In tailwind-variants, we can use Responsive Variants to create responsive and easy-to-use components.
But, this will cause no-custom-classname warning because responsiveVariants is not in ignoredKeys by default.
Describe the solution you'd like
Add responsiveVariants to ignoredKeys.
Describe alternatives you've considered
Ignore rules when necessary.
current workaround:
rules: {
"tailwindcss/no-custom-classname": [
"warn",
{
ignoredKeys: [
"compoundVariants",
"defaulVariants",
"responsiveVariants",
],
},
],
}, sk-akiyama
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
