starter.dev
starter.dev copied to clipboard
[remix-gql-tailwind] Audit kit to make sure it's up-to-date in comparison to showcase
Storybook's main.js is out of date. It reads:
alias: {
remix: path.resolve(__dirname, '../__mockRemix__'),
},
But it should read:
alias: [
{
find: '@remix-run/react',
replacement: path.resolve(__dirname, '../__mockRemix__'),
},
],
.prettierrc could use a few more rules. Currently only enforces trailing comma and single quote rules.
ESLint rules are all over the place between the kit and the showcase. Somehow, the showcase had both an eslintrc.js and an eslintrc.json... Needs consolidation.
Does not use husky and git hooks to lint and format code pre-commit like the showcase does.