Skip to content

Commit

Permalink
Remove last vestiges of eslint and prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuth committed Sep 14, 2024
1 parent 696cc3a commit 68bd92a
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 87 deletions.
72 changes: 0 additions & 72 deletions .eslintrc.cjs

This file was deleted.

3 changes: 1 addition & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@
"quickfix.biome": "explicit"
},
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true,
"eslint.run": "onSave"
"editor.formatOnSave": true
}
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@
## Tech stack

- Email/Password authentication with [cookie-based sessions](https://remix.run/docs/en/v1/api/remix#createcookiesessionstorage)
- [Biome](https://biomejs.dev/) for linting and formatting
- [Conform](https://conform.guide/) for Progressively Enhanced and fully type safe forms
- [Docker](https://www.docker.com/) and [Docker Compose](https://docs.docker.com/compose/) containerization
- [ESLint](https://eslint.org) for linting
- [GitHub Actions](https://github.com/features/actions) for CI
- [Playwright](https://playwright.dev/) for integration tests
- [PostgreSQL](https://www.postgresql.org/) database
- [Prettier](https://prettier.io) code formatting
- [Prisma](https://prisma.io) database ORM
- [shadcn/ui](https://ui.shadcn.com/) React component library
- [Storybook](https://storybook.js.org/) component explorer
Expand Down
8 changes: 0 additions & 8 deletions prettier.config.mjs

This file was deleted.

4 changes: 1 addition & 3 deletions server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,11 @@ async function setupRequestHandlers() {
app.all(
'*',
createRequestHandler({
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore ssrLoadModule returns a generic object that is not currently compatible
// with ServerBuild.
build: viteDevServer
? () => viteDevServer.ssrLoadModule('virtual:remix/server-build')
: // eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore The server build may not exist, yet.
: // @ts-ignore The server build may not exist, yet.
await import('../server/index.js'),
getLoadContext,
mode: process.env.NODE_ENV,
Expand Down

0 comments on commit 68bd92a

Please sign in to comment.