Skip to content

Commit

Permalink
💿 remix v2 (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradgarropy authored Dec 6, 2023
1 parent ef0964e commit 1f7cfd1
Show file tree
Hide file tree
Showing 141 changed files with 19,029 additions and 13,241 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

# build
/.cache
/.next
/build
/public/build
/tsconfig.tsbuildinfo

# test
Expand Down
14 changes: 11 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
{
"extends": [
"@remix-run/eslint-config",
"@remix-run/eslint-config/node",
"@remix-run/eslint-config/jest-testing-library",
"@bradgarropy/eslint-config",
"@bradgarropy/eslint-config-react",
"@bradgarropy/eslint-config-typescript",
"next"
"@bradgarropy/eslint-config-typescript"
],
"rules": {
"@next/next/no-img-element": "off"
// https://github.com/testing-library/eslint-plugin-testing-library/blob/main/docs/rules/no-await-sync-events.md#when-not-to-use-it
"testing-library/no-await-sync-events": [
"error",
{
"eventModules": ["fire-event"]
}
]
}
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

# build
/.cache
/.next
/build
/public/build
/tsconfig.tsbuildinfo

# test
Expand Down
4 changes: 2 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

# build
/.cache
/.next
/build
/public/build
/tsconfig.tsbuildinfo


# test
/coverage

Expand Down
4 changes: 2 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const config = {
clearMocks: true,
collectCoverage: true,
setupFilesAfterEnv: ["<rootDir>/src/test-utils/setup.ts"],
setupFilesAfterEnv: ["<rootDir>/src/test-utils/setup.tsx"],
moduleDirectories: ["<rootDir>/src", "node_modules"],
moduleNameMapper: {
"\\.module.css$": "identity-obj-proxy",
Expand Down Expand Up @@ -33,4 +33,4 @@ const config = {
transformIgnorePatterns: [],
}

module.exports = config
export default config
5 changes: 0 additions & 5 deletions next-env.d.ts

This file was deleted.

84 changes: 0 additions & 84 deletions next.config.js

This file was deleted.

Loading

1 comment on commit 1f7cfd1

@vercel
Copy link

@vercel vercel bot commented on 1f7cfd1 Dec 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.