![JSON Schema Diagram of /properties/lint/items[0]/properties/exclude](images/property-exclude.png)
| Array Index | Type | Description |
|---|---|---|
| 1-n | Any | Any type of value (boolean, integer, number, string, object, array or null). |
| Additional Properties | Type | Description |
|---|---|---|
| Any Property | Any | All values are valid, no restrictions. |
[]
| Schema 1 | A String value |
|---|---|
| Schema 2 | /properties/lint/items[0]/properties/exclude/oneOf[1] |
"exclude": {
"description": "File glob(s) to ignore.",
"default": [],
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}