Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 449 Bytes

CONTRIBUTING.md

File metadata and controls

21 lines (17 loc) · 449 Bytes

Contributing to NiWrap

Warning

Contributing Guidelines are a work in progress.

VSCode JSON schema

Add the following entry to your ./.vscode/settings.json file to enable in-editor JSON schema validation for this project for VSCode.

{
    "json.schemas": [
        {
            "fileMatch": [
                "descriptors/**/*.json"
            ],
            "url": "./schemas/descriptor.schema.json"
        }
    ]
}