🔌 IDE support¶
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.33.0/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"
}
]
}