// Solid.js with Tailwind CSS .cursorrules
Add this skill
npx mdskills install PatrickJS/cursor-solidjs-tailwindProvides basic Solid.js + Tailwind conventions but lacks actionable triggers and examples
1// Solid.js with Tailwind CSS .cursorrules23// Prefer functional components45const preferFunctionalComponents = true;67// Solid.js and Tailwind CSS best practices89const solidjsTailwindBestPractices = [10 "Use createSignal() for reactive state",11 "Implement Tailwind CSS classes for styling",12 "Utilize @apply directive in CSS files for reusable styles",13 "Implement responsive design using Tailwind's responsive classes",14 "Use Tailwind's configuration file for customization",15 "Implement dark mode using Tailwind's dark variant",16];1718// Folder structure1920const folderStructure = `21src/22 components/23 pages/24 styles/25 App.jsx26 index.jsx27public/28 index.html29tailwind.config.js30postcss.config.js31`;3233// Additional instructions3435const additionalInstructions = `361. Use JSX for component templates372. Implement proper Tailwind CSS purging for production builds383. Utilize Solid Router for routing when applicable394. Use Tailwind's @layer directive for custom styles405. Implement utility-first CSS approach416. Follow both Solid.js and Tailwind naming conventions427. Use JIT (Just-In-Time) mode for faster development43`;4445
Full transparency — inspect the skill content before installing.