Skip to content

Commit

Permalink
Merge pull request #495 from tonybaloney/fix_floating_promise
Browse files Browse the repository at this point in the history
Fix disappearing dialog in WSL
  • Loading branch information
tonybaloney authored Nov 6, 2023
2 parents b04caba + e23b3b2 commit 03ac9c9
Show file tree
Hide file tree
Showing 6 changed files with 95 additions and 65 deletions.
6 changes: 4 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint",
Expand All @@ -19,6 +20,7 @@
"no-unused-vars": "error",
"unused-imports/no-unused-imports": "error",
"prefer-const": "error",
"@typescript-eslint/no-non-null-assertion": "warn"
"@typescript-eslint/no-non-null-assertion": "warn",
"@typescript-eslint/no-floating-promises": "warn"
}
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the "vscode-pets" extension will be documented in this file.

## [1.25.1]

* Fixes a bug occuring mostly in VS Code inside WSL where the add pets action doesn't work because the window would immediately disappear. [#489](https://github.com/tonybaloney/vscode-pets/issues/489)

## [1.25.0]

* Add Akita inu pet by @kevin2huang in https://github.com/tonybaloney/vscode-pets/pull/458
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-pets",
"displayName": "vscode-pets",
"description": "Pets for your VS Code",
"version": "1.25.0",
"version": "1.25.1",
"engines": {
"vscode": "^1.73.0"
},
Expand Down
Loading

0 comments on commit 03ac9c9

Please sign in to comment.