Skip to content

IDE support for SDF files

Ari Keränen edited this page Mar 17, 2023 · 2 revisions

The following snippet for Visual Studio Code settings enables validation and code completion for SDF files (with filename extension .sdf.json).

    "json.schemas": [
    {
        "fileMatch": [
            "*.sdf.json"
        ],
        "url": "https://raw.githubusercontent.com/ietf-wg-asdf/SDF/master/sdf-validation.jso.json"
    }
    ]
Clone this wiki locally