Skip to content
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

feat: disable inlay hints for assignee types by default #1260

Merged
merged 2 commits into from
Nov 9, 2024
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
12 changes: 6 additions & 6 deletions docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ To set up a powerful _integrated development environment_ (_IDE_) for Safe-DS, f

To run Safe-DS programs, you also need the [Safe-DS Runner](https://github.com/Safe-DS/Runner):

1. **Install [Python](https://www.python.org/) (3.11 or 3.12)**. Make sure to add Python to your
system's `PATH` during installation. Verify installation by running `python --version` in a
command line. You should get output similar to `Python 3.12.2`.
1. **Install [Python](https://www.python.org/) (3.11 or 3.12)**. Make sure to add Python to your system's `PATH` during
installation. Verify installation by running `python --version` in a command line. You should get output similar to
`Python 3.12.2`.
2. **Open VS Code**.
3. **Open the command palette** (Menu bar > View > Command Palette).
4. **Type `Install the Safe-DS Runner`**.
4. **Type `Install the Safe-DS Runner`** and **Press ++enter++**.
5. **Select where to install the Safe-DS Runner**.
6. **Press ++enter++**. Installation may take a few minutes, since it downloads and installs several large libraries
like PyTorch.

Installation may take a few minutes, since it downloads and installs several large libraries like PyTorch.

## Updating the Safe-DS Extension

Expand Down
16 changes: 8 additions & 8 deletions packages/safe-ds-vscode/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Safe-DS

Safely develop Data Science programs with a statically checked domain specific language (DSL) and integrated tools for data
inspection.
Safely develop Data Science programs with a statically checked domain specific language (DSL) and integrated tools for
data inspection.

![demo](https://github.com/Safe-DS/DSL/raw/main/docs/img/home/demo.gif)

Expand All @@ -14,15 +14,15 @@ To set up a powerful _integrated development environment_ (_IDE_) for Safe-DS, f

To run Safe-DS programs, you also need the [Safe-DS Runner](https://github.com/Safe-DS/Runner):

1. **Install [Python](https://www.python.org/) (3.11 or 3.12)**. Make sure to add Python to your
system's `PATH` during installation. Verify installation by running `python --version` in a
command line. You should get output similar to `Python 3.12.2`.
1. **Install [Python](https://www.python.org/) (3.11 or 3.12)**. Make sure to add Python to your system's `PATH` during
installation. Verify installation by running `python --version` in a command line. You should get output similar to
`Python 3.12.2`.
2. **Open VS Code**.
3. **Open the command palette** (Menu bar > View > Command Palette).
4. **Type `Install the Safe-DS Runner`**.
4. **Type `Install the Safe-DS Runner`** and **Press Enter**.
5. **Select where to install the Safe-DS Runner**.
6. **Press Enter**. Installation may take a few minutes, since it downloads and installs several large libraries
like PyTorch.

Installation may take a few minutes, since it downloads and installs several large libraries like PyTorch.

## Documentation

Expand Down
2 changes: 1 addition & 1 deletion packages/safe-ds-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
"properties": {
"safe-ds.inlayHints.assigneeTypes.enabled": {
"type": "boolean",
"default": true,
"default": false,
"description": "Show inferred types for named assignees."
},
"safe-ds.inlayHints.lambdaParameterTypes.enabled": {
Expand Down