// React + Redux + TypeScript .cursorrules
Add this skill
npx mdskills install PatrickJS/cursor-react-redux-typescriptProvides solid Redux Toolkit and TypeScript conventions but lacks actionable trigger conditions
1// React + Redux + TypeScript .cursorrules23// Prefer functional components with hooks45const preferFunctionalComponents = true;67// Use TypeScript for type safety89const useTypeScript = true;1011// Redux best practices1213const reduxBestPractices = [14 "Use Redux Toolkit for efficient Redux development",15 "Implement slice pattern for organizing Redux code",16 "Utilize createAsyncThunk for handling async actions",17 "Use selectors for accessing state in components",18];1920// Folder structure2122const folderStructure = `23src/24 components/25 features/26 store/27 slices/28 hooks.ts29 store.ts30 types/31 utils/32`;3334// Additional instructions3536const additionalInstructions = `371. Use React.FC for functional components with props382. Implement strict TypeScript checks393. Use Redux hooks (useSelector, useDispatch) in components404. Create reusable typed hooks for Redux operations415. Implement proper error handling in async operations426. Use Redux DevTools for debugging437. Follow Redux style guide for naming conventions44`;4546
Full transparency — inspect the skill content before installing.