JSON Schema /properties/lint/items[0]

Diagram

Drilldown into /properties/lint/items[0]/properties/exclude Drilldown into /properties/lint/items[0]/properties/exclude Drilldown into /properties/lint/items[0]/properties/exclude Drilldown into /properties/lint/items[0]/properties/files Drilldown into /properties/lint/items[0]/properties/files Drilldown into /properties/lint/items[0]/properties/filesJSON Schema Diagram of /properties/lint/items[0]

Value

Object

Properties

Property Name Type Description
files any files
project string A String value
Location of the tsconfig.json project file. Will also use as files to lint if 'files' property not present..
tslintConfig string A String value
Location of the tslint.json configuration..
exclude any exclude

Source

{
    "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 (215:14)

References

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