vscode-yaml
vscode-yaml copied to clipboard
YAML support for VS Code with built-in kubernetes syntax support
Signed-off-by: Josh Pinkney ### What does this PR do? This PR is a P.O.C that allows other VSCode extensions to register bundles (similar to vscode-java/jdt.ls bundles) through a "yamlExtensions" contribution....
### What does this PR do? Allows users to configure `do-not-indent` style and set the amount of spaces between content and trailing comments making this extension to comply with default...
### Is your enhancement related to a problem? Please describe. A common problem with this extension is mis-detection of the correct schema. For example, a file named `deploy.yml` is assumed...
## Describe the bug The extension removes the blank line between the very last active line of code and a following comment block when saving. In this example the very...
While trying to make vscode-ansible extension be loaded by Eclipse Theia, I discovered that latest version of vscode-yaml listed on open-vsx.org store within theia is 0.17 and not 0.18. I...
## Describe the bug As mentioned here https://github.com/SchemaStore/schemastore/issues/1476#issuecomment-833755700 , it turns out the default validation for .gitlab-ci.yml type is taken in priority to the validation I want to set with...
## Describe the bug When opening an Ansible Vars file, I get the notification: `Unable to load schema from 'https://raw.githubusercontent.com/ansible-community/schemas/main/f/ansible-vars.json': No content.` I am using VSCode with WSL 2, and...
## Describe the bug `.vscode/settings.json`: ```js { "yaml.schemas": { "./schema1.json": ["**/some-folder/**/*.yaml"], "./schema2.json": ["**/some-folder/*.yaml"] } } ``` ## Expected Behavior The file `./packages/some-folder/abc/x.yaml` should be validated against `schema1.json` only. ## Current...
(originally opened in https://github.com/Azure/vscode-kubernetes-tools/issues/919) Steps: 1. Install https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml (v0.17.0) 2. Install https://marketplace.visualstudio.com/items?itemName=42Crunch.vscode-openapi (v4.3.1) 3. Open a OpenAPI spec file in yaml format Expect: the yaml file gets parsed correctly. Actual:...
### Describe the solution you would like A schema can declare properties associated with a constant value. We would like the constant value associated with a property to be automatically...