Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 582 Bytes

File metadata and controls

22 lines (16 loc) · 582 Bytes

Schemas

This repository contains a collection of JSON Schema specifications for the validation of Reviewpad configuration files.

Usage

VSCode

You can configure your VSCode to validate your Reviewpad configuration file against the schemas.

Open your settings.json file and add the following configuration:

{
    "yaml.schemas": {
        // Validate reviewpad.yml against the latest schema
        "https://raw.githubusercontent.com/reviewpad/schemas/main/latest/schema.json": [
            "reviewpad.yml",
        ]
    },
}