mirror of
https://github.com/denoland/deno.git
synced 2025-02-01 20:25:12 -05:00
21e8260cc9
This PR updates `deno_lint` which contains a couple of bug fixes for JSX/React related rules. The react rules now have all a `react-*` prefix in the name as well.
16 lines
379 B
Text
16 lines
379 B
Text
warn: Unterminated string constant at [WILDCARD]script.ts:1:13
|
|
|
|
const foo = 'bar
|
|
~~~~
|
|
error[no-unused-vars]: `foo` is never used
|
|
--> [WILDCARD]script.ts:1:7
|
|
|
|
|
1 | const foo = 'bar
|
|
| ^^^
|
|
= hint: If this is intentional, prefix it with an underscore like `_foo`
|
|
|
|
docs: https://docs.deno.com/lint/rules/no-unused-vars
|
|
|
|
|
|
Found 1 problem
|
|
Checked 1 file
|