Fix the prettier linting errors
Signed-off-by: Remy Suen <remy.suen@docker.com>
This commit is contained in:
parent
e3bbfe97ef
commit
2a88d048e4
17
README.md
17
README.md
|
@ -84,11 +84,13 @@ See [TELEMETRY.md](./TELEMETRY.md) for details about what kind of telemetry we c
|
|||
> **I can see duplicated code completion suggestions and/or hover tooltips in Compose files.**
|
||||
|
||||
Do you have any of the following extensions installed?
|
||||
|
||||
- [Red Hat's YAML extension](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml) (powered by [redhat-developer/yaml-language-server](https://github.com/redhat-developer/yaml-language-server))
|
||||
1. To disable duplicates from this extension, create a JSON file with `{}` as its content and save it somewhere. Let's say it is at `/home/user/empty.json`.
|
||||
2. Open the [Command Palette](https://code.visualstudio.com/api/ux-guidelines/command-palette) in Visual Studio Code and open "Preferences: Open User Settings (JSON)".
|
||||
3. Create an object attribute for `yaml.schemas` if it does not already exist.
|
||||
4. Inside the `yaml.schemas` object, map your empty JSON file to Compose YAML files.
|
||||
1. To disable duplicates from this extension, create a JSON file with `{}` as its content and save it somewhere. Let's say it is at `/home/user/empty.json`.
|
||||
2. Open the [Command Palette](https://code.visualstudio.com/api/ux-guidelines/command-palette) in Visual Studio Code and open "Preferences: Open User Settings (JSON)".
|
||||
3. Create an object attribute for `yaml.schemas` if it does not already exist.
|
||||
4. Inside the `yaml.schemas` object, map your empty JSON file to Compose YAML files.
|
||||
|
||||
```JSONC
|
||||
{
|
||||
"yaml.schemas": {
|
||||
|
@ -99,8 +101,9 @@ Do you have any of the following extensions installed?
|
|||
}
|
||||
}
|
||||
```
|
||||
|
||||
- [Microsoft's Container Tools extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-containers) (powered by [microsoft/compose-language-service](https://github.com/microsoft/compose-language-service))
|
||||
- If [microsoft/vscode-containers#75](https://github.com/microsoft/vscode-containers/pull/75) is merged and you are on a release with this change, then the duplicates should already be taken of.
|
||||
- To disable duplicates from this extension, you can set the `containers.enableComposeLanguageService` settingto `false` and restart Visual Studio Code.
|
||||
- If [microsoft/vscode-containers#75](https://github.com/microsoft/vscode-containers/pull/75) is merged and you are on a release with this change, then the duplicates should already be taken of.
|
||||
- To disable duplicates from this extension, you can set the `containers.enableComposeLanguageService` settingto `false` and restart Visual Studio Code.
|
||||
- [Microsoft's Docker extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-docker) (powered by [microsoft/compose-language-service](https://github.com/microsoft/compose-language-service))
|
||||
- To disable duplicates from this extension, you can set the `docker.enableDockerComposeLanguageService` settingto `false` and restart Visual Studio Code.
|
||||
- To disable duplicates from this extension, you can set the `docker.enableDockerComposeLanguageService` settingto `false` and restart Visual Studio Code.
|
||||
|
|
Loading…
Reference in New Issue