2024-07-03 20:54:33 -04:00
|
|
|
error[no-eval]: `eval` call is not allowed
|
|
|
|
--> [WILDLINE]a.ts:1:1
|
|
|
|
|
|
|
|
|
1 | eval("");
|
|
|
|
| ^^^^^^^^
|
|
|
|
= hint: Remove the use of `eval`
|
|
|
|
|
2025-01-27 17:54:35 +01:00
|
|
|
docs: https://docs.deno.com/lint/rules/no-eval
|
2024-07-03 20:54:33 -04:00
|
|
|
|
|
|
|
|
|
|
|
error[no-await-in-loop]: Unexpected `await` inside a loop.
|
|
|
|
--> [WILDLINE]a.ts:4:3
|
|
|
|
|
|
|
|
|
4 | await Deno.open("test");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
= hint: Remove `await` in loop body, store all promises generated and then `await Promise.all(storedPromises)` after the loop
|
|
|
|
|
2025-01-27 17:54:35 +01:00
|
|
|
docs: https://docs.deno.com/lint/rules/no-await-in-loop
|
2024-07-03 20:54:33 -04:00
|
|
|
|
|
|
|
|
|
|
|
error[no-explicit-any]: `any` type is not allowed
|
|
|
|
--> [WILDLINE]a.ts:9:25
|
|
|
|
|
|
|
|
|
9 | export function test(): any {
|
|
|
|
| ^^^
|
|
|
|
= hint: Use a specific type other than `any`
|
|
|
|
|
2025-01-27 17:54:35 +01:00
|
|
|
docs: https://docs.deno.com/lint/rules/no-explicit-any
|
2024-07-03 20:54:33 -04:00
|
|
|
|
|
|
|
|
|
|
|
Found 3 problems
|
|
|
|
Checked 1 file
|