starter.dev icon indicating copy to clipboard operation
starter.dev copied to clipboard

[remix-gql-tailwind] Audit kit to make sure it's up-to-date in comparison to showcase

Open tvanantwerp opened this issue 3 years ago • 3 comments

tvanantwerp avatar Sep 30 '22 20:09 tvanantwerp

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__'),
          },
        ],

tvanantwerp avatar Sep 30 '22 20:09 tvanantwerp

.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.

tvanantwerp avatar Sep 30 '22 20:09 tvanantwerp

Does not use husky and git hooks to lint and format code pre-commit like the showcase does.

tvanantwerp avatar Oct 07 '22 19:10 tvanantwerp