eslint-plugin-tailwindcss
Advanced tools
Comparing version 1.8.4 to 1.8.5
@@ -10,2 +10,11 @@ /** | ||
{ | ||
type: 'CORE CONCEPTS', | ||
members: [ | ||
{ | ||
type: 'Hover, Focus, & Other States', | ||
members: 'group', | ||
}, | ||
], | ||
}, | ||
{ | ||
type: 'LAYOUT', | ||
@@ -261,3 +270,3 @@ members: [ | ||
type: 'Align Self', | ||
members: 'items\\-(auto|start|end|center|stretch)', | ||
members: 'self\\-(auto|start|end|center|stretch)', | ||
}, | ||
@@ -264,0 +273,0 @@ { |
@@ -74,2 +74,5 @@ /** | ||
cb(classNames, node); | ||
} else if (arg === undefined) { | ||
// Ignore invalid child candidates (probably inside complex TemplateLiteral) | ||
return; | ||
} else { | ||
@@ -76,0 +79,0 @@ const forceIsolation = skipConditional ? true : isolate; |
{ | ||
"name": "eslint-plugin-tailwindcss", | ||
"version": "1.8.4", | ||
"version": "1.8.5", | ||
"description": "Rules enforcing best practices while using Tailwind CSS", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -31,3 +31,3 @@ /** | ||
{ | ||
code: `<div class="container box-content lg:box-border max-h-24">Only Tailwind CSS classnames</div>`, | ||
code: `<div class="container box-content lg:box-border max-h-24 self-end">Only Tailwind CSS classnames</div>`, | ||
}, | ||
@@ -112,2 +112,9 @@ { | ||
}, | ||
{ | ||
code: ` | ||
<div class="group border-indigo-500 hover:bg-white hover:shadow-lg hover:border-transparent"> | ||
<p class="text-indigo-600 group-hover:text-gray-900">New Project</p> | ||
<p class="text-indigo-500 group-hover:text-gray-500">Create a new project from a variety of starting templates.</p> | ||
</div>`, | ||
}, | ||
], | ||
@@ -114,0 +121,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
110180
3027