Skip to content

Commit

Permalink
chore(deps-dev): bump the typescript-eslint group with 2 updates (#67)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump the typescript-eslint group with 2 updates

Bumps the typescript-eslint group with 2 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) and [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser).


Updates `@typescript-eslint/eslint-plugin` from 7.18.0 to 8.0.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.0.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.18.0 to 8.0.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.0.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: typescript-eslint
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: typescript-eslint
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore(scenes): fix eslint error in game.ts

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mark <[email protected]>
  • Loading branch information
dependabot[bot] and remarkablemark authored Aug 4, 2024
1 parent a8520cf commit f070e84
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 61 deletions.
115 changes: 56 additions & 59 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/yargs": "17.0.32",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@typescript-eslint/eslint-plugin": "8.0.0",
"@typescript-eslint/parser": "8.0.0",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-plugin-prettier": "5.2.1",
Expand Down
1 change: 1 addition & 0 deletions src/scenes/game.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export async function go(levelNumber: number) {

try {
level = await getLevel(levelNumber)
// eslint-disable-next-line @typescript-eslint/no-unused-vars
} catch (error) {
return go(0)
}
Expand Down

0 comments on commit f070e84

Please sign in to comment.