diff options
| author | Luca Casonato <lucacasonato@yahoo.com> | 2020-09-02 11:39:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-02 11:39:20 +0200 |
| commit | fe47da9f2334ed962743614fc3caad27902741af (patch) | |
| tree | 3ecf460333a6dafcb143b77a7978c3a8eeb02457 /cli/tests/lint/expected_from_stdin_json.out | |
| parent | b21f318e6818ebbe73ac1aadd8fa03f85207a8a0 (diff) | |
chore: multi line deno_lint diagnostics (#7303)
Diffstat (limited to 'cli/tests/lint/expected_from_stdin_json.out')
| -rw-r--r-- | cli/tests/lint/expected_from_stdin_json.out | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/cli/tests/lint/expected_from_stdin_json.out b/cli/tests/lint/expected_from_stdin_json.out index bec566841..ed5a0c5dc 100644 --- a/cli/tests/lint/expected_from_stdin_json.out +++ b/cli/tests/lint/expected_from_stdin_json.out @@ -1,15 +1,19 @@ { "diagnostics": [ { - "location": { - "line": 1, - "col": 7 + "range": { + "start": { + "line": 1, + "col": 7 + }, + "end": { + "line": 1, + "col": 10 + } }, "filename": "_stdin.ts", "message": "`any` type is not allowed", - "code": "no-explicit-any", - "line_src": "let a: any;", - "snippet_length": 3 + "code": "no-explicit-any" } ], "errors": [] |
