Skip to content

chore(deps-dev): bump prettier from 3.5.3 to 3.6.2 #1552

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion client/src/connection/ssh/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
),
};

Expand Down
9 changes: 4 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 0 additions & 1 deletion website/docs/Configurations/Profiles/sas9ssh.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "[email protected]"
```

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]
Expand Down
2 changes: 0 additions & 2 deletions website/docs/Features/errorsWarnings.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,13 @@ 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.

![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.
Expand Down
Loading