1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/tests/specs/lint/workspace/a.out
David Sherret 147411e64b
feat: npm workspace and better Deno workspace support (#24334)
Adds much better support for the unstable Deno workspaces as well as
support for npm workspaces. npm workspaces is still lacking in that we
only install packages into the root node_modules folder. We'll make it
smarter over time in order for it to figure out when to add node_modules
folders within packages.

This includes a breaking change in config file resolution where we stop
searching for config files on the first found package.json unless it's
in a workspace. For the previous behaviour, the root deno.json needs to
be updated to be a workspace by adding `"workspace":
["./path-to-pkg-json-folder-goes-here"]`. See details in
https://github.com/denoland/deno_config/pull/66

Closes #24340
Closes #24159
Closes #24161
Closes #22020
Closes #18546
Closes #16106
Closes #24160
2024-07-04 00:54:33 +00:00

32 lines
797 B
Text

error[no-eval]: `eval` call is not allowed
--> [WILDLINE]a.ts:1:1
|
1 | eval("");
| ^^^^^^^^
= hint: Remove the use of `eval`
docs: https://lint.deno.land/rules/no-eval
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
docs: https://lint.deno.land/rules/no-await-in-loop
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`
docs: https://lint.deno.land/rules/no-explicit-any
Found 3 problems
Checked 1 file