Skip to content

Commit cbef436

Browse files
chore(deps-dev): bump the dev group across 1 directory with 6 updates (#1265)
* chore(deps-dev): bump the dev group across 1 directory with 6 updates Bumps the dev group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.14.10` | `22.9.0` | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.15.0` | `8.13.0` | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.16.0` | `8.13.0` | | [eslint](https://github.com/eslint/eslint) | `8.57.0` | `9.14.0` | | [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.35.0` | `7.37.2` | | [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `4.6.2` | `5.0.0` | Updates `@types/node` from 20.14.10 to 22.9.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@typescript-eslint/eslint-plugin` from 7.15.0 to 8.13.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.13.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 7.16.0 to 8.13.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.13.0/packages/parser) Updates `eslint` from 8.57.0 to 9.14.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](eslint/eslint@v8.57.0...v9.14.0) Updates `eslint-plugin-react` from 7.35.0 to 7.37.2 - [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases) - [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md) - [Commits](jsx-eslint/eslint-plugin-react@v7.35.0...v7.37.2) Updates `eslint-plugin-react-hooks` from 4.6.2 to 5.0.0 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/[email protected]/packages/eslint-plugin-react-hooks) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev - dependency-name: eslint-plugin-react dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev - dependency-name: eslint-plugin-react-hooks dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev ... Signed-off-by: dependabot[bot] <[email protected]> * chore: add glob as devDependencies Signed-off-by: Wei Wu <[email protected]> * chore: migrate to eslint v9 Signed-off-by: Wei Wu <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Wei Wu <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Wei Wu <[email protected]>
1 parent 009ab36 commit cbef436

24 files changed

+450
-465
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 41 deletions
This file was deleted.

.vscodeignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ prettier.config.js
1616
contributing.md
1717
ContributorAgreement.txt
1818
.travis.yml
19-
.eslintignore
2019
.nvmrc
20+
eslint.config.mjs
2121
pull_request_template.md
2222
l10n/bundle.l10n.json

client/src/components/ContentNavigator/ContentDataProvider.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,6 @@ class ContentDataProvider
235235

236236
public watch(): Disposable {
237237
// ignore, fires for all changes...
238-
// eslint-disable-next-line @typescript-eslint/no-empty-function
239238
return new Disposable(() => {});
240239
}
241240

client/src/components/ContentNavigator/ContentModel.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export class ContentModel {
5353
let data;
5454
try {
5555
data = (await this.contentAdapter.getContentOfUri(uri)).toString();
56+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
5657
} catch (e) {
5758
throw new Error(Messages.FileOpenError);
5859
}
@@ -71,6 +72,7 @@ export class ContentModel {
7172
const data = await this.contentAdapter.getContentOfItem(item);
7273

7374
return Buffer.from(data, "binary");
75+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
7476
} catch (e) {
7577
throw new Error(Messages.FileDownloadError);
7678
}

client/src/components/ContentNavigator/convert.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,7 @@ export class NotebookToFlowConverter {
392392
try {
393393
const result = await createStudioSession(this.connection);
394394
this.studioSessionId = result;
395+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
395396
} catch (error) {
396397
this.studioSessionId = "";
397398
}

client/src/components/LibraryNavigator/LibraryDataProvider.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ class LibraryDataProvider
167167

168168
public watch(): Disposable {
169169
// ignore, fires for all changes...
170-
// eslint-disable-next-line @typescript-eslint/no-empty-function
171170
return new Disposable(() => {});
172171
}
173172

client/src/components/LibraryNavigator/LibraryModel.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ class LibraryModel {
118118
public async deleteTable(item: LibraryItem) {
119119
try {
120120
await this.libraryAdapter.deleteTable(item);
121+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
121122
} catch (error) {
122123
throw new Error(
123124
l10n.t(Messages.TableDeletionError, { tableName: item.uid }),

client/src/connection/itc/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,7 @@ export class ITCSession extends Session {
514514
const globalStorageUri = getGlobalStorageUri();
515515
try {
516516
await workspace.fs.readDirectory(globalStorageUri);
517+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
517518
} catch (e) {
518519
await workspace.fs.createDirectory(globalStorageUri);
519520
}

client/src/connection/rest/RestLibraryAdapter.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ class RestLibraryAdapter implements LibraryAdapter {
166166
tableName: item.name,
167167
}),
168168
);
169+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
169170
} catch (error) {
170171
throw new Error("Cannot delete table");
171172
}

0 commit comments

Comments
 (0)