This repository was archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Chore: upgrade dependencies #602
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
b44187d
chore: migrate to user-event and latest testing-lib
ThisIsMissEm 4833b28
chore: add test:debug helper script
ThisIsMissEm fdb1fec
chore: update Inrupt SDKs and swr
ThisIsMissEm 2e21800
chore: support react 18
ThisIsMissEm 067df89
chore: run npm audit fix
ThisIsMissEm 832b162
chore: upgrade devDependencies
ThisIsMissEm 117ae51
chore: remove husky
ThisIsMissEm 1b219e7
chore: fix storybook build warnings
ThisIsMissEm e69fd6b
chore: try to get eslint to work with typescript
ThisIsMissEm 72c1fd3
chore: fix quote/unquote lint errors
ThisIsMissEm 322ee8d
fix: only run npm audit in CI on production dependencies
ThisIsMissEm 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| __mocks__ | ||
| __snapshots__ | ||
| **/styles.ts | ||
| .eslintrc.js |
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,16 +1,27 @@ | ||
| module.exports = { | ||
| root: true, | ||
| plugins: ["license-header"], | ||
| extends: ["@inrupt/eslint-config-react"], | ||
| extends: [ | ||
| "@inrupt/eslint-config-react", | ||
| "@inrupt/eslint-config-lib", | ||
| "plugin:storybook/recommended", | ||
| ], | ||
| rules: { | ||
| "@typescript-eslint/ban-ts-comment": 0, | ||
| "license-header/header": [1, "./resources/license-header.js"], | ||
| "no-use-before-define": [0], | ||
| "@typescript-eslint/no-use-before-define": [1], | ||
|
|
||
| "prettier/prettier": [ | ||
| "error", | ||
| { endOfLine: "auto" }, | ||
| { | ||
| endOfLine: "auto", | ||
| }, | ||
| ], | ||
| "react/jsx-filename-extension": [ | ||
| 1, | ||
| { | ||
| extensions: [".tsx"], | ||
| }, | ||
| ], | ||
| "import/no-unresolved": "off", | ||
| "no-shadow": "warn", | ||
| "react/require-default-props": "warn", | ||
| "react/default-props-match-prop-types": "warn", | ||
| noImplicitAny: "off", | ||
| }, | ||
| } | ||
| }; | ||
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 was deleted.
Oops, something went wrong.
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.
You win this round JS ^^
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.
Hey, there were just too many to change and it was mostly in the tests.