Skip to content

🔌 IDE supports

Currently, we don't have any plugins for popular IDEs. You can help us with it 🩵.

We can suggest you to use json schema for autocomplete and validate helmwave.yml in your IDE.

You can generate schema with cli command helmwave schema and use it in your IDE.

helmwave schema > helmwave.schema.json

Or you can get it from github

wget -L https://github.com/helmwave/helmwave/releases/download/v0.28.1/schema.json -o helmwave.schema.json
# latest version
wget -L https://github.com/helmwave/helmwave/releases/latest/download/schema.json

settings.json

{
    "yaml.schemas": [
        {
            "fileMatch": [
                "helmwave.yml"
            ],
            "url": "https://github.com/helmwave/helmwave/releases/latest/download/schema.json"
        }
    ]
}

vscode yaml schema

idea bar vscode yaml schema

set file pattern: helmwave.yml

vscode yaml schema

restart idea.

original ticket