-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update to `@typescript-eslint/eslint-plugin@7`. - Update to `eslint-plugin-jsdoc@48`. - Update to `eslint-plugin-markdown@4`. - Update to `eslint-plugin-unicorn@52`. - Enable rule `@typescript-eslint/class-methods-use-this`. - Enable rule `unicorn/no-await-in-promise-methods`. - Enable rule `unicorn/no-single-promise-in-promise-methods`. - Disble rule `@typescript-eslint/no-throw-literal` for type checking. - Enable rule `@typescript-eslint/no-array-delete` for type checking. - Enable rule `@typescript-eslint/no-unsafe-unary-minus` for type checking. - Enable rule `@typescript-eslint/no-useless-template-literals` for type checking. - Enable rule `@typescript-eslint/only-throw-error` for type checking. - Enable rule `@typescript-eslint/prefer-destructuring` for type checking. - Enable rule `@typescript-eslint/prefer-find` for type checking. - Enable rule `@typescript-eslint/prefer-promise-reject-errors` for type checking. - Enable rule `@typescript-eslint/use-unknown-in-catch-callback-variable` for type checking.
- Loading branch information
1 parent
d8e789b
commit 14d40ae
Showing
15 changed files
with
731 additions
and
424 deletions.
There are no files selected for viewing
This file contains 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,6 @@ | ||
import 'bulma/css/bulma.css' | ||
import { render } from 'react-dom' | ||
import { createRoot } from 'react-dom/client.js' | ||
|
||
import { App } from './components/App/index.js' | ||
|
||
render(<App />, document.getElementById('app')) | ||
createRoot(document.getElementById('app')).render(<App />) |
This file contains 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 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 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 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 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 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 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.