Skip to content

Commit b14ed5d

Browse files
dependabot[bot]scottdoverScott Dover
authored
chore(deps-dev): bump prettier from 3.5.3 to 3.6.2 (#1552)
* chore(deps-dev): bump prettier from 3.5.3 to 3.6.2 Bumps [prettier](https://github.com/prettier/prettier) from 3.5.3 to 3.6.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](prettier/prettier@3.5.3...3.6.2) --- updated-dependencies: - dependency-name: prettier dependency-version: 3.6.2 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * run npm run format Signed-off-by: Scott Dover <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Scott Dover <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Scott Dover <[email protected]> Co-authored-by: Scott Dover <[email protected]>
1 parent e84af4f commit b14ed5d

File tree

5 files changed

+7
-10
lines changed

5 files changed

+7
-10
lines changed

client/src/connection/ssh/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ export class SSHSession extends Session {
9393
keepaliveInterval: KEEPALIVE_INTERVAL,
9494
keepaliveCountMax: KEEPALIVE_UNANSWERED_THRESHOLD,
9595
authHandler: (methodsLeft, partialSuccess, callback) => (
96-
authHandlerFn(methodsLeft, partialSuccess, callback), undefined
96+
authHandlerFn(methodsLeft, partialSuccess, callback),
97+
undefined
9798
),
9899
};
99100

package-lock.json

Lines changed: 4 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1414,7 +1414,7 @@
14141414
"mocha": "^11.5.0",
14151415
"papaparse": "^5.5.3",
14161416
"path-browserify": "^1.0.1",
1417-
"prettier": "^3.5.3",
1417+
"prettier": "^3.6.2",
14181418
"proxyquire": "^2.1.3",
14191419
"sinon": "^21.0.0",
14201420
"ts-loader": "^9.5.2",

website/docs/Configurations/Profiles/sas9ssh.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "[email protected]"
5858
```
5959

6060
5. You are prompted to enter additional information. If you did not enter a path, a default path is provided for you. You can also specify a passphrase. If you do not specify a passphrase, your key is not password-protected. Press Enter to accept the default value for each prompt.
61-
6261
- Enter a file in which to save the key (/c/Users/you/.ssh/id_ed25519):[Press enter]
6362
- Enter passphrase (empty for no passphrase): [Type a passphrase]
6463
- Enter same passphrase again: [Type passphrase again]

website/docs/Features/errorsWarnings.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,13 @@ The Problems panel contains error and warning messages that are generated by the
99
To use the Quick Fix options:
1010

1111
1. Open the Quick Fix menu in one of these ways:
12-
1312
- Click a message in the Problems panel and then click the corresponding `Show Code Actions` icon in the code editor.
1413

1514
- Click the `Show fixes` button for the appropriate message in the Problems panel.
1615

1716
![Quick Fix](/images/quickFix.png)
1817

1918
2. Select one of the following options:
20-
2119
- `Ignore: current position` - clears the currently selected problem from the Problems panel and the code editor.
2220

2321
- `Ignore: warnings` - clears all warnings from the Problems panel and the code editor.

0 commit comments

Comments
 (0)