JSON Schema Property 'lint'

Description

Properties to be passed to TSLint.

Diagram

Drilldown into /properties/lint/items[0]JSON Schema Diagram of /properties/lint

Value

Array

Array Index Type Description
1-n object /properties/lint/items[0]

Source

"lint": {
    "type": "array",
    "description": "Properties to be passed to TSLint.",
    "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "files": {
                "description": "File glob(s) to lint.",
                "default": [],
                "oneOf": [
                    {
                        "type": "string"
                    },
                    {
                        "type": "array",
                        "items": {
                            "type": "string"
                        }
                    }
                ]
            },
            "project": {
                "type": "string",
                "description": "Location of the tsconfig.json project file. Will also use as files to lint if 'files' property not present."
            },
            "tslintConfig": {
                "type": "string",
                "description": "Location of the tslint.json configuration."
            },
            "exclude": {
                "description": "File glob(s) to ignore.",
                "default": [],
                "oneOf": [
                    {
                        "type": "string"
                    },
                    {
                        "type": "array",
                        "items": {
                            "type": "string"
                        }
                    }
                ]
            }
        },
        "required": [
            "project"
        ]
    }
}
https://raw.githubusercontent.com/angular/angular-cli/master/packages/@angular/cli/lib/config/schema.json (212:11)

References

Documentation for .angular-cli.json
Generated using Liquid Studio 2018 - Developer Bundle Edition 16.0.0.0