1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-02 17:01:14 -05:00
denoland-deno/cli/tests/testdata/lint/expected_quiet.out
Luca Casonato 137f1a0c68
feat(cli): improved diagnostics printing (#22049)
This initially uses the new diagnostic printer in `deno lint`,
`deno doc` and `deno publish`. In the limit we should also update
`deno check` to use this printer.
2024-01-23 16:37:43 +01:00

20 lines
514 B
Text

error[ban-untagged-ignore]: Ignore directive requires lint rule name(s)
--> [WILDCARD]file1.js:1:1
|
1 | // deno-lint-ignore
| ^^^^^^^^^^^^^^^^^^^
= hint: Add one or more lint rule names. E.g. // deno-lint-ignore adjacent-overload-signatures
docs: https://lint.deno.land/#ban-untagged-ignore
error[no-empty]: Empty block statement
--> [WILDCARD]file1.js:2:15
|
2 | while (false) {}
| ^^
= hint: Add code or comment to the empty block
docs: https://lint.deno.land/#no-empty