From 5e9d68e9ee6c4d553f0c3c59701cc5748f5a862e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 28 Aug 2024 03:28:02 +0000 Subject: [PATCH 1/2] build(deps-dev): bump typescript-eslint from 7.18.0 to 8.3.0 Bumps [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) from 7.18.0 to 8.3.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.3.0/packages/typescript-eslint) --- updated-dependencies: - dependency-name: typescript-eslint dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0c173e0..c9bc82d 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,7 @@ "should": "^13.2.3", "tsup": "^8.0.1", "typescript": "^5.3.3", - "typescript-eslint": "^7.6.0" + "typescript-eslint": "^8.3.0" }, "peerDependencies": { "eslint": ">=8.40.0 <11" From 5aa66ec1d7bc6261f23a9226aac561b8f8c4bb64 Mon Sep 17 00:00:00 2001 From: Yash Singh Date: Tue, 27 Aug 2024 20:32:49 -0700 Subject: [PATCH 2/2] fix: disable no-unused-expression on tests --- eslint.config.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eslint.config.mjs b/eslint.config.mjs index 0359eeb..cfcb68c 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -56,6 +56,9 @@ export default [ globals: { ...globals.mocha } + }, + rules: { + '@typescript-eslint/no-unused-expressions': 'off' // Typescript-eslint errors on should.js expressions } } ];