Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 232a950

Browse files
build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.17.0 to 8.1.0 (#7141)
* build(deps-dev): bump @typescript-eslint/eslint-plugin Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 7.17.0 to 8.1.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.1.0/packages/eslint-plugin) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Fix all new lints * Trigger CI --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jon C <[email protected]>
1 parent 4c84992 commit 232a950

37 files changed

+328
-475
lines changed

account-compression/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"@types/jest": "^29.5.12",
7070
"@types/node": "^22.2.0",
7171
"@types/node-fetch": "^2.6.11",
72-
"@typescript-eslint/eslint-plugin": "^7.17.0",
72+
"@typescript-eslint/eslint-plugin": "^8.1.0",
7373
"@typescript-eslint/parser": "^8.1.0",
7474
"eslint": "^8.57.0",
7575
"eslint-config-turbo": "^2.0.12",

account-compression/sdk/tests/accountCompression.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ describe('Account Compression', () => {
298298
try {
299299
await execute(provider, [ix], [payerKeypair]);
300300
assert(false, 'Closing a tree account before it is empty should ALWAYS error');
301-
} catch (e) {}
301+
} catch {}
302302
});
303303
});
304304

@@ -343,7 +343,7 @@ describe('Account Compression', () => {
343343
try {
344344
await execute(provider, [replaceIx], [payerKeypair]);
345345
assert(false, 'Attacker was able to successfully write fake existence of a leaf');
346-
} catch (e) {}
346+
} catch {}
347347

348348
const splCMT = await ConcurrentMerkleTreeAccount.fromAccountAddress(connection, cmt);
349349

@@ -503,7 +503,7 @@ describe('Account Compression', () => {
503503
try {
504504
await execute(provider, [replaceIx], [payerKeypair]);
505505
throw Error('This replace instruction should have failed because the leaf index is OOB');
506-
} catch (_e) {}
506+
} catch {}
507507
});
508508
});
509509
});

libraries/type-length-value/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"@types/chai": "^4.3.17",
5050
"@types/mocha": "^10.0.7",
5151
"@types/node": "^22.2.0",
52-
"@typescript-eslint/eslint-plugin": "^7.17.0",
52+
"@typescript-eslint/eslint-plugin": "^8.1.0",
5353
"@typescript-eslint/parser": "^8.1.0",
5454
"chai": "^5.1.1",
5555
"eslint": "^8.57.0",

libraries/type-length-value/js/test/tlvData.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ describe('tlvData', () => {
9292
type[0] = 2;
9393
expect(tlv.firstBytes(type)).to.be.deep.equal(Buffer.from([1, 2]));
9494
type[0] = 3;
95-
expect(tlv.firstBytes(type)).to.be.null;
95+
expect(tlv.firstBytes(type)).to.equal(null);
9696
};
9797

9898
it('should get the entries individually', () => {

memo/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"@types/jest": "^29.5.12",
5757
"@types/node": "^22.2.0",
5858
"@types/node-fetch": "^2.6.11",
59-
"@typescript-eslint/eslint-plugin": "^7.17.0",
59+
"@typescript-eslint/eslint-plugin": "^8.1.0",
6060
"@typescript-eslint/parser": "^8.1.0",
6161
"chai": "^5.1.1",
6262
"eslint": "^8.57.0",

name-service/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"@types/bn.js": "^5.1.1",
4747
"@types/jest": "^29.5.12",
4848
"@types/node": "^22.2.0",
49-
"@typescript-eslint/eslint-plugin": "^7.17.0",
49+
"@typescript-eslint/eslint-plugin": "^8.1.0",
5050
"@typescript-eslint/parser": "^8.1.0",
5151
"eslint": "^8.57.0",
5252
"eslint-plugin-eslint-comments": "^3.2.0",

0 commit comments

Comments
 (0)