diff options
| author | Brenley Dueck <brenleydueck@gmail.com> | 2022-10-25 07:21:20 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-25 14:21:20 +0200 |
| commit | a189c5393e1b106687736635fea0b8aeca283826 (patch) | |
| tree | 6c0119266f77611e1ba8146ee394f8e10cf8b3c4 /cli/tests/testdata/lint/Deno.compact.format.jsonc | |
| parent | ac5fcf626a77db7795f7ab2b4f15e4ecb3270171 (diff) | |
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".
Diffstat (limited to 'cli/tests/testdata/lint/Deno.compact.format.jsonc')
| -rw-r--r-- | cli/tests/testdata/lint/Deno.compact.format.jsonc | 13 |
1 files changed, 13 insertions, 0 deletions
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" + } +} |
