From a189c5393e1b106687736635fea0b8aeca283826 Mon Sep 17 00:00:00 2001 From: Brenley Dueck Date: Tue, 25 Oct 2022 07:21:20 -0500 Subject: feat(lint): add a report lint config setting (#16045) Builds off this PR to add a "report" setting to deno.json which can be "pretty", "compact", or "json". --- cli/schemas/config-file.v1.json | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'cli/schemas') diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json index a8f80dd36..26cd3ab77 100644 --- a/cli/schemas/config-file.v1.json +++ b/cli/schemas/config-file.v1.json @@ -249,6 +249,15 @@ "uniqueItems": true } } + }, + "report": { + "default": "pretty", + "enum": [ + "pretty", + "json", + "compact" + ], + "description": "The default report format to use when linting" } } }, -- cgit v1.2.3