diff --git a/client/src/connection/ssh/index.ts b/client/src/connection/ssh/index.ts index c1878d67c..365216dca 100644 --- a/client/src/connection/ssh/index.ts +++ b/client/src/connection/ssh/index.ts @@ -93,7 +93,8 @@ export class SSHSession extends Session { keepaliveInterval: KEEPALIVE_INTERVAL, keepaliveCountMax: KEEPALIVE_UNANSWERED_THRESHOLD, authHandler: (methodsLeft, partialSuccess, callback) => ( - authHandlerFn(methodsLeft, partialSuccess, callback), undefined + authHandlerFn(methodsLeft, partialSuccess, callback), + undefined ), }; diff --git a/package-lock.json b/package-lock.json index 909970028..c5039fd60 100644 --- a/package-lock.json +++ b/package-lock.json @@ -31,7 +31,7 @@ "mocha": "^11.5.0", "papaparse": "^5.5.3", "path-browserify": "^1.0.1", - "prettier": "^3.5.3", + "prettier": "^3.6.2", "proxyquire": "^2.1.3", "sinon": "^21.0.0", "ts-loader": "^9.5.2", @@ -5405,11 +5405,10 @@ } }, "node_modules/prettier": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", - "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz", + "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==", "dev": true, - "license": "MIT", "bin": { "prettier": "bin/prettier.cjs" }, diff --git a/package.json b/package.json index 057f9be9c..6aac1e47f 100644 --- a/package.json +++ b/package.json @@ -1414,7 +1414,7 @@ "mocha": "^11.5.0", "papaparse": "^5.5.3", "path-browserify": "^1.0.1", - "prettier": "^3.5.3", + "prettier": "^3.6.2", "proxyquire": "^2.1.3", "sinon": "^21.0.0", "ts-loader": "^9.5.2", diff --git a/website/docs/Configurations/Profiles/sas9ssh.md b/website/docs/Configurations/Profiles/sas9ssh.md index dea2bd41d..387e76233 100644 --- a/website/docs/Configurations/Profiles/sas9ssh.md +++ b/website/docs/Configurations/Profiles/sas9ssh.md @@ -58,7 +58,6 @@ ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "youremail@company.com" ``` 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. - - Enter a file in which to save the key (/c/Users/you/.ssh/id_ed25519):[Press enter] - Enter passphrase (empty for no passphrase): [Type a passphrase] - Enter same passphrase again: [Type passphrase again] diff --git a/website/docs/Features/errorsWarnings.md b/website/docs/Features/errorsWarnings.md index 29e5ab616..392ea95c2 100644 --- a/website/docs/Features/errorsWarnings.md +++ b/website/docs/Features/errorsWarnings.md @@ -9,7 +9,6 @@ The Problems panel contains error and warning messages that are generated by the To use the Quick Fix options: 1. Open the Quick Fix menu in one of these ways: - - Click a message in the Problems panel and then click the corresponding `Show Code Actions` icon in the code editor. - Click the `Show fixes` button for the appropriate message in the Problems panel. @@ -17,7 +16,6 @@ To use the Quick Fix options: ![Quick Fix](/images/quickFix.png) 2. Select one of the following options: - - `Ignore: current position` - clears the currently selected problem from the Problems panel and the code editor. - `Ignore: warnings` - clears all warnings from the Problems panel and the code editor.