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/tests/testdata/lint/Deno.compact.format.jsonc | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 cli/tests/testdata/lint/Deno.compact.format.jsonc (limited to 'cli/tests/testdata/lint/Deno.compact.format.jsonc') diff --git a/cli/tests/testdata/lint/Deno.compact.format.jsonc b/cli/tests/testdata/lint/Deno.compact.format.jsonc new file mode 100644 index 000000000..24b159ca6 --- /dev/null +++ b/cli/tests/testdata/lint/Deno.compact.format.jsonc @@ -0,0 +1,13 @@ +{ + "lint": { + "files": { + "include": ["with_config/"], + "exclude": ["with_config/b.ts"] + }, + "rules": { + "tags": ["recommended"], + "include": ["ban-untagged-todo"] + }, + "report": "compact" + } +} -- cgit v1.2.3