Skip to content

Commit

Permalink
Make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
martinRenou committed Aug 24, 2023
1 parent 8fd2c03 commit 48c7bda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
"eslint": "jlpm eslint:check --fix",
"eslint:check": "eslint . --cache --ext .ts,.tsx",
"eslint:check": "eslint src --cache --ext .ts,.tsx",
"install:extension": "jlpm build",
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ const sidecarPlugin: JupyterFrontEndPlugin<void> = {
w.addClass('jp-LinkedOutputView');
w.title.label = this.model.get('title');
w.title.closable = true;
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
app.shell._rightHandler.sideBar.tabCloseRequested.connect(
(sender: any, tab: any) => {
Expand Down

0 comments on commit 48c7bda

Please sign in to comment.