mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
763f05e74d
Adds a new `no-sloppy-imports` lint rule and cleans up the lint code. Closes #22844 Closes https://github.com/denoland/deno_lint/issues/1293
10 lines
186 B
Text
10 lines
186 B
Text
{
|
|
"steps": [{
|
|
"args": "run main.ts",
|
|
"output": "no_sloppy.out",
|
|
"exitCode": 1
|
|
}, {
|
|
"args": "run --unstable-sloppy-imports main.ts",
|
|
"output": "sloppy.out"
|
|
}]
|
|
}
|