-
Notifications
You must be signed in to change notification settings - Fork 1
Upgrade to next 13 #1027
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
LBHCallumM
wants to merge
28
commits into
develop
Choose a base branch
from
callum/upgrade-next-13
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Upgrade to next 13 #1027
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
ea1b7d1
upgrade packages
LBHCallumM 829cf49
Run new-link codemod (fix legacy link behaviour)
LBHCallumM e899977
Merge branch 'develop' into callum/upgrade-next-13
LBHCallumM e874fce
LF
LBHCallumM 63ab0bf
fix
LBHCallumM cf24eb4
update linting
LBHCallumM af8c0b4
fix missing
LBHCallumM e98bdc1
moar
LBHCallumM 78e80a1
remove deprecated reporter
LBHCallumM 08c9613
Update unit tests
LBHCallumM 801ff43
LF
LBHCallumM a0cbf19
test updates
LBHCallumM 1b4f157
fix another error
LBHCallumM 822ed31
more test fixes
LBHCallumM 80d134b
fix cypress tests
LBHCallumM 8013deb
more fixes
LBHCallumM dfa468d
fix test issue
LBHCallumM ec3abd0
resolve formatting issue
LBHCallumM 89c923b
Update other snapshot
LBHCallumM 248f7ff
fix snapshot
LBHCallumM 253c8ef
no sandbox
LBHCallumM 8bd7a10
Try updating dependencies
LBHCallumM 63a9b58
fix cypress test
LBHCallumM 66e169a
manually fix snapshot
LBHCallumM fa4dbe0
plzzz
LBHCallumM 9f797d4
force exit
LBHCallumM 8cf7e6b
cleanup
LBHCallumM 34ec6c5
update formatting
LBHCallumM File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,23 +8,27 @@ | |
| }, | ||
| "parser": "@typescript-eslint/parser", | ||
| "parserOptions": { | ||
| "ecmaVersion": 2020, | ||
| "ecmaVersion": 2022, | ||
| "sourceType": "module", | ||
| "ecmaFeatures": { | ||
| "jsx": true | ||
| } | ||
| }, | ||
| "plugins": ["react", "@typescript-eslint"], | ||
| "plugins": [ | ||
| "react", | ||
| "react-hooks", | ||
| "@typescript-eslint" | ||
| ], | ||
| "extends": [ | ||
| "eslint:recommended", | ||
| "plugin:@typescript-eslint/recommended", | ||
| "plugin:react/recommended", | ||
| "plugin:prettier/recommended", | ||
| "plugin:react-hooks/recommended", | ||
|
Comment on lines
10
to
+26
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updates to eslint |
||
| "plugin:cypress/recommended", | ||
| "plugin:jest/recommended" | ||
| "plugin:jest/recommended", | ||
| "plugin:prettier/recommended" | ||
| ], | ||
| "rules": { | ||
| // Your custom rules here | ||
| "linebreak-style": ["error", "unix"], | ||
| "require-atomic-updates": "off", | ||
| "react/jsx-uses-vars": 2, | ||
|
|
@@ -42,11 +46,16 @@ | |
| "cypress/unsafe-to-chain-command": "warn", | ||
| "react/display-name": "warn", | ||
| "@typescript-eslint/no-explicit-any": "warn", | ||
| "jest/no-focused-tests": "warn" | ||
| "jest/no-focused-tests": "warn", | ||
| "react-hooks/rules-of-hooks": "error", | ||
| "react-hooks/exhaustive-deps": "warn" | ||
| }, | ||
| "settings": { | ||
| "react": { | ||
| "version": "detect" | ||
| }, | ||
| "next": { | ||
| "rootDir": ["./"] | ||
| } | ||
| } | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -49,7 +49,6 @@ cypress/results | |
| .sentryclirc | ||
|
|
||
| # Version control | ||
| yarn.lock | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added yarn.lock back to vc, we should really be deploying with the same versions |
||
| package-lock.json | ||
|
|
||
| .idea | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,12 @@ | ||
| { | ||
| "semi": false, | ||
| "singleQuote": true, | ||
| "endOfLine": "auto", | ||
| "useTabs": false | ||
| } | ||
| "endOfLine": "lf", | ||
| "useTabs": false, | ||
| "bracketSpacing": true, | ||
| "bracketSameLine": false, | ||
| "singleAttributePerLine": true, | ||
| "printWidth": 80, | ||
| "tabWidth": 2 | ||
|
|
||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apparently this is needed for cypress to run well in circleci