fix(@angular-devkit/build-angular): add all current TSLint default formatters to schema

This commit is contained in:
Charles Lyding 2018-06-22 11:50:26 -04:00 committed by clydin
parent a067530de2
commit fd14e4e162

View File

@ -1,4 +1,5 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"title": "TSlint Target", "title": "TSlint Target",
"description": "TSlint target options for Build Facade.", "description": "TSlint target options for Build Facade.",
"type": "object", "type": "object",
@ -43,16 +44,24 @@
"type": "string", "type": "string",
"description": "Output format (prose, json, stylish, verbose, pmd, msbuild, checkstyle, vso, fileslist).", "description": "Output format (prose, json, stylish, verbose, pmd, msbuild, checkstyle, vso, fileslist).",
"default": "prose", "default": "prose",
"enum": [ "anyOf": [
"prose", {
"json", "enum": [
"stylish", "checkstyle",
"verbose", "codeFrame",
"pmd", "filesList",
"msbuild", "json",
"checkstyle", "junit",
"vso", "msbuild",
"fileslist" "pmd",
"prose",
"stylish",
"tap",
"verbose",
"vso"
]
},
{ "minLength": 1 }
] ]
}, },
"exclude": { "exclude": {